21 lines
712 B
Batchfile
21 lines
712 B
Batchfile
@echo off
|
|
REM #######################################
|
|
REM # @description: #
|
|
REM # Removes AdobeNotificationClient #
|
|
REM # Run this just before sysprep, #
|
|
REM # since this app conflicts with it #
|
|
REM # #
|
|
REM # @project: IMGSystTools #
|
|
REM # @author: Bram Prieshof #
|
|
REM #######################################
|
|
|
|
NET SESSION >nul 2>&1
|
|
IF %ERRORLEVEL% EQU 0 (
|
|
PowerShell.exe "Get-AppxPackage -AllUsers *AdobeNotificationClient* | Remove-AppxPackage -AllUsers"
|
|
ECHO AdobeNotificationClient Removed
|
|
PAUSE
|
|
) ELSE (
|
|
ECHO Please run this script as administrator
|
|
PAUSE
|
|
)
|