禁用或启用Windows自动更新命令行 

2011-12-22 12:25:26

标签:Microsoft Windows 测试 message computer

使用下面的命令行命令,可以禁用Windows自动更新。

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v AUOptions /t REG_DWORD /d 1 /f

我已经测试在Windows XP和Windows Server 2003和它完美。 After running the above command you can also see a balloon popping up near the system tray with the message “ Your computer might be at risk… Automatic updates is turned off…… “.运行上面的命令后,您还可以看到消息“您的计算机可能处于危险之中… …自动更新关闭了附近的系统托盘弹出一个气球 … … “。

要启用自动更新,需要设置的注册表值设置为0例如:

 

如果你想禁用自动更新服务 ,然后运行下面的命令从命令提示符。

sc config wuauserv start= disabled

IF you want to stop Automatic updates service from windows command line then run the below command.如果你想停止自动更新服务从Windows命令行,然后运行下面的命令。

net stop wuauserv

Command for starting automatic updates service:启动自动更新服务的命令:

net start wuauserv

Command for enabling the service:为使服务的命令:

sc config wuauserv start= auto

reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update” /v AUOptions /t REG_DWORD /d 0 /f 
如果你想下载更新,但不会安装到用户的行为就可以了,然后你可以设置registy的值设置为3。

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v AUOptions /t REG_DWORD /d 3 /f