如何遮蔽win10自動更新(怎麼永久禁止win10系統自動更新)

方法一

1.在cortana中輸入gpedit.msc ,開啟通用管理文件

2.選擇【計算機配置】-》【管理模板】-》【windows元件】

3.在右邊【配置自動更新】,雙擊,然後選擇已禁用。

方法二

1.在cmd中輸入services.msc ,開啟服務列表

2.找到【windows update】 ,把啟動型別改為禁用。

方法三

1.點選開始,選擇【設定】按鈕

2.在設定中選擇【更新和安全】

3.在更新設定中,進行相應修改和檢視

4.檢視配置的更新策略

方法四

1.同時按住win x鍵,然後選中POWER SHELL,一定要管理員模式

2.執行下面語句:

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更新"

如果想關閉更新升級的話,可以試試以上方法,希望大家關注和支援。