This repository has been archived on 2023-05-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
SysTools/InstallTools/Remove-AdobeNotificationClient.cmd
2021-07-15 15:28:03 +02:00

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
)