20 lines
597 B
Batchfile
20 lines
597 B
Batchfile
@echo off
|
|
title Uninstall Unwanted Applications
|
|
|
|
echo.
|
|
echo Uninstalling unwanted apps...
|
|
|
|
echo - Dell SupportAssist
|
|
start "" /w MsiExec.exe /X{4F8A3BC3-641C-4B0D-AF46-EA3354016EA7} /qn /norestart
|
|
|
|
echo - Dell SupportAssist Remediation
|
|
start "" /w MsiExec.exe /X{2674B8DB-D696-4F9D-8606-E13E9D119579} /qn /norestart
|
|
|
|
echo - Dell SupportAssist OS Recovery Plugin for Dell Update
|
|
start "" /w MsiExec.exe /X{08E7C8D5-F2B5-4F09-B0EA-F28913BEFDB0} /qn /norestart
|
|
|
|
echo - Dell Digital Delivery Services
|
|
start "" /w MsiExec.exe /X{E530ABB7-9DCC-421B-B751-484375E8374A} /qn /norestart
|
|
|
|
echo Done!
|