轉載於https://jingyan.baidu.com/article/1e5468f94dc9a3484961b7a8.htmlhtml
在cortana中輸入gpedit.msc ,打開通用管理文檔windows
選擇【計算機配置】-》【管理模板】-》【windows組件】安全
在右邊【配置自動更新】,雙擊,而後選擇已禁用spa
在cmd中輸入services.msc ,打開服務列表3d
找到【windows update】 ,把啓動類型改成禁用。code
點擊開始,選擇【設置】按鈕htm
在設置中選擇【更新和安全】blog
在更新設置中,進行相應修改和查看ci
查看配置的更新策略文檔
同時按住win+x鍵,而後選中POWER SHELL,必定要管理員模式
Clear-Host
$WindowsUpdatePath = "HKLM:SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\"
$AutoUpdatePath = "HKLM:SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" If(Test-Path -Path $WindowsUpdatePath) { Remove-Item -Path $WindowsUpdatePath -Recurse } New-Item $WindowsUpdatePath -Force New-Item $AutoUpdatePath -Force Set-ItemProperty -Path $AutoUpdatePath -Name NoAutoUpdate -Value 1 Get-ScheduledTask -TaskPath "\Microsoft\Windows\WindowsUpdate\" | Disable-ScheduledTask takeown /F C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator /A /R icacls C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator /grant Administrators:F /T Get-ScheduledTask -TaskPath "\Microsoft\Windows\UpdateOrchestrator\" | Disable-ScheduledTask Stop-Service wuauserv Set-Service wuauserv -StartupType Disabled Write-Output "已經關閉全部的windows更新"
我的建議直接走腳本(方法四)