win7已經于2020年1月14日停止更新。越來越多的使用者開始使用win10系統,最近有網友反映,win10的系統更新老是冒出來,很是讨厭,能不是禁 用或不提示。一般來說,及時更新更新的作業系統是比較安全的。
這裡将介紹如何完全禁止win10自動更新。有多種方法,參照其一即可。
方法一(修改組政策)
1、在cortana中輸入gpedit.msc ,打開通用管理文檔

2、選擇【計算機配置】-》【管理模闆】-》【windows元件】-》【Windows更新】
3、在右邊【配置自動更新】,輕按兩下,然後選擇已禁用。
END
方法二(停止更新服務)
1、在cmd中輸入services.msc ,打開服務清單
2、找到【windows update】 ,把啟動類型改為禁用。
END
方法三(更新與安全)
1、點選開始,選擇【設定】按鈕
2、在設定中選擇【更新和安全】
3、在更新設定中,進行相應修改和檢視
4、檢視配置的更新政策
END
方法四[推薦](使用腳本關閉win10自動更新)
同時按住win+x鍵,然後選中POWER SHELL,一定要管理者模式
執行下面語句:(将以下代碼複制,ctrl+v粘貼回車即可)
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更新”
END