maxs-titus-overlay/desktop.bat

29 lines
798 B
Batchfile
Raw Normal View History

2024-02-26 15:23:51 -06:00
@echo off
cd /D "%~dp0"
echo Installing apps fron winget config file....
wingetd.bat
echo Running Shutup 10....
oosu10.exe shutmouth.cfg /quiet
echo Stopping and Disabling Windows Update services...
net stop wuauserv
sc config wuauserv start= disabled
net stop bits
sc config bits start= disabled
net stop dosvc
sc config dosvc start= disabled
2024-02-26 16:57:28 -06:00
echo Setting region to Denmark....
PowerShell Set-WinHomeLocation -GeoID 61
2024-02-26 15:23:51 -06:00
echo Removing stuff CTT Utility missed....
Get-AppxPackage -alluser *Paint* | Remove-Appxpackage
Get-AppxPackage -alluser *Notepad* | Remove-Appxpackage
Get-AppxPackage -alluser *DevHome* | Remove-Appxpackage
Get-AppxPackage -alluser *YourPhone* | Remove-Appxpackage
Get-AppxPackage -alluser *WindowsStore* | Remove-Appxpackage
echo Done.
pause