【关闭 Windows 自动更新脚本(GPT4答案)】

关闭 Windows 自动更新脚本(GPT4答案)

@echo off
echo 关闭自动更新服务...
net stop wuauserv
net stop bits
net stop dosvc
echo.

echo 禁用自动更新服务...
sc config wuauserv start= disabled
sc config bits start= disabled
sc config dosvc start= disabled
echo.

echo 关闭自动更新计划任务...
schtasks /change /tn "Microsoft\Windows\WindowsUpdate\Automatic App Update" /disable
schtasks /change /tn "Microsoft\Windows\WindowsUpdate\Scheduled Start" /disable
schtasks /change /tn "Microsoft\Windows\UpdateOrchestrator\Backup Scan" /disable
schtasks /change /tn "Microsoft\Windows\UpdateOrchestrator\Scheduled Scan" /disable
schtasks /change /tn "Microsoft\Windows\UpdateOrchestrator\Universal Orchestrator Start" /disable
echo.

echo 修改组策略设置...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v NoAutoUpdate /t REG_DWORD /d 1 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v AUOptions /t REG_DWORD /d 1 /f
echo.

echo 自动更新已关闭。
pause

你可能感兴趣的:(windows)