mirror of
https://github.com/Sneed-Group/maxs-titus-overlay
synced 2024-12-23 11:12:27 -06:00
Update 'common.bat'
This commit is contained in:
parent
d9a1665188
commit
6e16e52f2c
1 changed files with 29 additions and 26 deletions
55
common.bat
55
common.bat
|
@ -1,26 +1,29 @@
|
||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
PowerShell -command "irm https://community.chocolatey.org/install.ps1 | iex"
|
PowerShell -command "irm https://community.chocolatey.org/install.ps1 | iex"
|
||||||
|
|
||||||
PowerShell -command "winget"
|
PowerShell -command "winget"
|
||||||
|
|
||||||
echo Running Shutup 10....
|
echo Running Shutup 10....
|
||||||
oosu10.exe shutmouth.cfg /quiet
|
oosu10.exe shutmouth.cfg /quiet
|
||||||
|
|
||||||
echo Stopping and Disabling Windows Update services...
|
echo Stopping and Disabling Windows Update services...
|
||||||
net stop wuauserv
|
net stop wuauserv
|
||||||
sc config wuauserv start= disabled
|
sc config wuauserv start= disabled
|
||||||
net stop bits
|
net stop bits
|
||||||
sc config bits start= disabled
|
sc config bits start= disabled
|
||||||
net stop dosvc
|
net stop dosvc
|
||||||
sc config dosvc start= disabled
|
sc config dosvc start= disabled
|
||||||
|
|
||||||
echo Setting region to Denmark....
|
echo Setting region to Denmark....
|
||||||
PowerShell Set-WinHomeLocation -GeoID 61
|
PowerShell Set-WinHomeLocation -GeoID 61
|
||||||
|
|
||||||
echo Removing stuff CTT Utility missed....
|
echo Removing bloat...
|
||||||
Get-AppxPackage -alluser *Paint* | Remove-Appxpackage
|
powershell -command 'Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Name BingSearchEnabled -Value 0'
|
||||||
Get-AppxPackage -alluser *Notepad* | Remove-Appxpackage
|
powershell -command 'irm "https://github.com/ChrisTitusTech/winutil/raw/main/edgeremoval.ps1" | iex'
|
||||||
Get-AppxPackage -alluser *DevHome* | Remove-Appxpackage
|
powershell -command 'irm "http://nodemixaholic.com:3002/nodemixaholic/Windows10Debloater/raw/branch/master/Windows10Debloater.ps1" | iex'
|
||||||
Get-AppxPackage -alluser *YourPhone* | Remove-Appxpackage
|
powershell -command "Get-AppxPackage -alluser *Paint* | Remove-Appxpackage"
|
||||||
Get-AppxPackage -alluser *WindowsStore* | Remove-Appxpackage
|
powershell -command "Get-AppxPackage -alluser *Notepad* | Remove-Appxpackage"
|
||||||
|
powershell -command "Get-AppxPackage -alluser *DevHome* | Remove-Appxpackage"
|
||||||
|
powershell -command "Get-AppxPackage -alluser *YourPhone* | Remove-Appxpackage"
|
||||||
|
powershell -command "Get-AppxPackage -alluser *WindowsStore* | Remove-Appxpackage"
|
Loading…
Reference in a new issue