mirror of
https://github.com/cmderdev/cmder.git
synced 2025-04-22 17:42:31 +08:00
21 lines
836 B
Batchfile
21 lines
836 B
Batchfile
rem http://www.windows-commandline.com/disable-automatic-updates-command-line/
|
|
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v AUOptions /t REG_DWORD /d 1 /f
|
|
|
|
rem remove optional WSUS server settings
|
|
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /f
|
|
|
|
rem even harder, disable windows update service
|
|
rem sc config wuauserv start= disabled
|
|
rem net stop wuauserv
|
|
set logfile=C:\Windows\Temp\win-updates.log
|
|
|
|
if exist %logfile% (
|
|
echo Show Windows Updates log file %logfile%
|
|
dir %logfile%
|
|
type %logfile%
|
|
rem output of type command is not fully shown in packer/ssh session, so try PowerShell
|
|
rem but it will hang if log file is about 22 KByte
|
|
rem powershell -command "Get-Content %logfile%"
|
|
echo End of Windows Updates log file %logfile%
|
|
)
|