微软一年会发布两个Win10大版本,通常每个版本的生命周期是18个月,所以在新版比较成熟的时候微软就会向Win10旧版用户推送Win10新版,用户继而会自动更新为大版本,那么如何在不禁止自动更新(接收累积更新)的情况下禁止跨版本升级呢,其实通过注册表就可以搞定,下面一起来看看操作方法。适用于所有Win10系统,但是不影响更新补丁功能。
操作方法如下:
使用方法:复制以下注册表代码到文本文档中,然后另存为REG注册表文件导入即可。Win10 1903
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindowsWindowsUpdate]
;ExcludeWUDriversInQualityUpdate;=dword:00000001
;TargetReleaseVersion;=dword:00000001
;TargetReleaseVersionInfo;=;1903;
Win10 1909
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindowsWindowsUpdate]
;ExcludeWUDriversInQualityUpdate;=dword:00000001
;TargetReleaseVersion;=dword:00000001
;TargetReleaseVersionInfo;=;1909;
Win10 2004
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindowsWindowsUpdate]
;ExcludeWUDriversInQualityUpdate;=dword:00000001
;TargetReleaseVersion;=dword:00000001
;TargetReleaseVersionInfo;=;2004;
从上面可以注意到,其实只需要把TargetReleaseVersionInfo的值改成当前版本号就可以禁止该版本了。
本文来自互联网或AI生成,不代表系统内阁立场。本站不负任何法律责任。