This commit is contained in:
Michael H.G. Schmidt 2025-04-23 16:54:29 +02:00
parent 62ce3e2ae9
commit 1a2fe43183
2 changed files with 20 additions and 11 deletions

View File

@ -0,0 +1,20 @@
@echo off
echo ####### %0 #######
echo.
echo removing BLOATWARE Windows-Backup App ...
dism /Online /NoRestart /Remove-Capability /CapabilityName:Windows.Client.ShellComponents~~~~0.0.1.0 1>nul 2>nul
echo removing BLOATWARE Outlook for Windows App ...
powershell -command "Get-AppxPackage -AllUsers Microsoft.OutlookForWindows | Remove-AppxPackage" 2>nul
echo removing BLOATWARE Windows Dev-Home App ...
powershell -command "Get-AppxPackage -AllUsers Microsoft.Windows.DevHome | Remove-AppxPackage" 2>nul
echo.
echo Please REBOOT your machine now!
echo.
echo ####### %0 #######

View File

@ -1,11 +0,0 @@
@echo off
echo ####### %0 #######
echo removing BLOATWARE Windows-Backup App ...
dism /Online /NoRestart /Remove-Capability /CapabilityName:Windows.Client.ShellComponents~~~~0.0.1.0
echo Please REBOOT your machine now!
echo ####### %0 #######