首页 > 编程知识 正文

怎么禁止win10自动更新系统,win10如何禁止自动更新系统

时间:2023-05-06 16:59:35 阅读:273280 作者:807

一般来说,及时更新升级的操作系统是比较安全的。但是有的人对自动升级却非常讨厌。这里将介绍如何完全禁止win10自动升级。 有多种方法,参照其一即可。

转自:https://jingyan.baidu.com/article/1e5468f94dc9a3484961b7a8.html

方法一(修改组策略)
在cortana中输入gpedit.msc ,打开通用管理文档

在cortana中输入gpedit.msc ,打开通用管理文档

2

选择【计算机配置】-》【管理模板】-》【windows组件】

3

在右边【配置自动更新】,双击,然后选择已禁用。

END 方法二(停止更新服务) 1

在cmd中输入services.msc ,打开服务列表

2

找到【windows update】 ,把启动类型改为禁用。

END 方法三(更新与安全) 1

点击开始,选择【设置】按钮

2

在设置中选择【更新和安全】

3

在更新设置中,进行相应修改和查看

4

查看配置的更新策略

END 方法四(使用脚本关闭win10自动更新)

同时按住win+x键,然后选中POWER SHELL,一定要管理员模式

执行下面语句:

Clear-Host

$WindowsUpdatePath = "HKLM:SOFTWAREPoliciesMicrosoftWindowsWindowsUpdate"

$AutoUpdatePath = "HKLM:SOFTWAREPoliciesMicrosoftWindowsWindowsUpdateAU"

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 "MicrosoftWindowsWindowsUpdate" | Disable-ScheduledTask

takeown /F C:WindowsSystem32TasksMicrosoftWindowsUpdateOrchestrator /A /R

icacls C:WindowsSystem32TasksMicrosoftWin快三稳赚计划导师ottom:0px;">New-Item $AutoUpdatePath -Force

Set-ItemProperty -Path $AutoUpdatePath -Name NoAutoUpdate -Value 1

Get-ScheduledTask -TaskPath "MicrosoftWindowsWindowsUpdate" | Disable-ScheduledTask

takeown /F C:WindowsSystem32TasksMicrosoftWindowsUpdateOrchestrator /A /R

icacls C:WindowsSystem32TasksMicrosoftWindowsUpdateOrchestrator /grant Administrators:F /T

Get-ScheduledTask -TaskPath "MicrosoftWindowsUpdateOrchestrator" | Disable-ScheduledTask

Stop-Service wuauserv

Set-Service wuauserv -StartupType Disabled

Write-Output "已经关闭所有的windows更新"




版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。