简单暴力彻底禁止win10自动更新
win10自动更新关不掉?用组策略!
什么?你是家庭版没有组策略?那试试这个方法,将以下内容分别保存为【关闭更新.bat】和【开启更新.bat】,注意后缀名需要修改为.bat,然后将下面的内容复制进去保存,根据需要双击运行即可。
关闭更新.bat:
net stop wuauserv
del C:\Windows\SoftwareDistribution\* /q /s /f
rd C:\Windows\SoftwareDistribution\DataStore /s /q
rd C:\Windows\SoftwareDistribution\Download /s /q
rd C:\Windows\SoftwareDistribution\SLS /s /q
echo 123>C:\Windows\SoftwareDistribution\DataStore
echo 123>C:\Windows\SoftwareDistribution\Download
echo 123>C:\Windows\SoftwareDistribution\SLS
开启更新.bat
del C:\Windows\SoftwareDistribution\* /q
net start wuauserv
赞 (0)