大家好,又见面了,我是你们的朋友全栈君。
一般来说,及时更新升级的操作系统是比较安全的。但是有的人对自动升级却非常讨厌。这里将介绍如何完全禁止win10自动升级。 有多种方法,参照其一即可。
转自:https://jingyan.baidu.com/article/1e5468f94dc9a3484961b7a8.html
方法一(修改组策略)
在cortana中输入gpedit.msc ,打开通用管理文档
方法四(使用脚本关闭win10自动更新)
-
同时按住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更新”
-
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/139905.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...