diff --git a/content/windows-secondary-menu-recovery-and-settings-boot-startup.md b/content/windows-secondary-menu-recovery-and-settings-boot-startup.md index a74bf3a..6f717d5 100644 --- a/content/windows-secondary-menu-recovery-and-settings-boot-startup.md +++ b/content/windows-secondary-menu-recovery-and-settings-boot-startup.md @@ -1,5 +1,5 @@ +++ -title = "Windows二级菜单恢复及设置开机启动" +title = "Windows二级菜单恢复及设置开机启动及彻底关闭更新" date = 2023-08-26 [taxonomies] @@ -34,4 +34,128 @@ reg delete "HKCU\Software\Classes\CLSID{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" / 文件位置打开后,按win+ R,键入“shell:startup”,然后选择“确定”。这将打开“启动”文件夹。 -将该应用的快捷方式从文件位置复制并粘贴到“启动”文件夹中,即添加启动项成功。 \ No newline at end of file +将该应用的快捷方式从文件位置复制并粘贴到“启动”文件夹中,即添加启动项成功。 + +## **Win11关闭自动更新** + +方案一:使用Windows设置关闭Win11更新 +在Windows系统设置中,也有一个设置可以暂时关闭Win11更新,让我们一起来看看吧! + +1. 按Win+I打开Windows设置页面。 + +2. 单击“更新和安全”>“Windows更新”,然后在右侧详情页中选择“暂停更新7天”选项即可在此后7天内关闭Windows更新。 + +暂停更新7天 + +方案二:使用注册表编辑器关闭Win11更新 +Windows注册表实质上是一个庞大的数据库,存储着各种各样的计算机数据与配置,我们可以通过编辑注册表来解决一些很难搞定的计算机问题,比如彻底关闭Win11更新。 + +1. 按Win+R输入regedit并按Enter键打开注册表编辑器。 + +2. 导航到此路径:HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows。 + +3. 右键单击Windows文件夹,选择“新建”>“项”,然后将其命名为“WindowsUpdate”。 + +新建项WindowsUpdate + +4. 右键单击新建的WindowsUpdate文件夹,选择“新建”>“项”,然后将其命名为“AU”。 + +5. 在新建的AU文件夹右侧空白页面中右键单击并选择“新建”>“DWORD(32位)值”,然后将其命名为“NoAutoUpdate”。 + +新建DWORD(32位)值并将其命名为NoAutoUpdate + +6. 双击新建的NoAutoUpdate,在弹出窗口中将其数值数据从0更改为1,然后单击“确定”。 + +更改NoAutoUpdate数值数据为1 + +7. 关闭注册表编辑器,重启计算机即可彻底关闭Windows更新。 + +方案三:使用任务计划程序关闭Win11更新 +任务计划程序可以帮助用户实现对任务进行记录、安排、追踪和完成的功能,我们可以通过它来关闭windows更新。 + +1. 右键单击“此电脑”,点击“管理”。 + +2. 导航到此路径:“任务计划程序” > “任务计划程序库” > “Microsoft” > “Windows” > “WindowsUpdate”。 + +3. 右键单击“Scheduled Start”任务,然后点击“禁用”即可停止Win11更新。 + +使用任务计划程序关闭Win11更新 + +方案四:使用组策略编辑器关闭Win11更新 +组策略是管理员为计算机和用户定义的,用来控制应用程序、系统设置和管理模板的一种机制,通俗一点说,即为介于控制面板和注册表之间的一种修改系统、设置程序的工具。当然,我们也可以通过本地组策略编辑器来关闭Win11更新。 + +1. 按Win+R输入gpedit.msc并按Enter键打开本地组策略编辑器。 + +2. 转到此路径:本地计算机策略>计算机配置>管理模板>Windows组件>Windows更新>适用于企业的Windows更新。 + +转到适用于企业的Windows更新文件夹 + +3. 双击此文件夹下的“选择目标功能更新版本”设置。 + +4. 在弹出窗口中将其配置为“已启用”,在左下方长条框中填入“20H1”(或者其他您想停留的Windows10版本),然后单击“应用”>“确定”即可。 + +配置选择目标功能更新版本设置以关闭Win11更新 + +5. 关闭本地组策略编辑器,重启计算机即可彻底停止Win11更新。 + +方案五:使用本地服务关闭Win11更新 +本地服务是汇集整个计算机上全部服务的一个集合,我们可以在这里对指定的Windows服务项进行启用、停止或禁用配置,关闭Win11更新也不例外。 + +1. 按Win+R输入services.msc并按Enter键打开服务页面。 + +2. 在右侧列表中找到“Windows Update”选项,双击进入详细属性页面,将其启动类型配置为“禁用”,然后单击“应用”>“确定”即可关闭Windows自动更新。 + +方案六:使用第三方软件关闭更新 + +[Windows Update Blocker](https://www.sordum.org/9470/windows-update-blocker-v1-8/) + +[Dism++](https://www.majorgeeks.com/files/details/dism.html) + +方案七:使用脚本彻底关闭更新 +``` +::Windows auomatic updates +reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU /v AutoInstallMinorUpdates /t REG_DWORD /d 1 /f +reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU /v NoAutoUpdate /t REG_DWORD /d 1 /f +reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU /v AUOptions /t REG_DWORD /d 4 /f +reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v AUOptions /t REG_DWORD /d 4 /f +reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v DisableWindowsUpdateAccess /t REG_DWORD /d 0 /f +reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v ElevateNonAdmins /t REG_DWORD /d 0 /f +reg add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoWindowsUpdate /t REG_DWORD /d 1 /f +reg add "HKLM\SYSTEM\Internet Communication Management\Internet Communication" /v DisableWindowsUpdateAccess /t REG_DWORD /d 0 /f +reg add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\WindowsUpdate /v DisableWindowsUpdateAccess /t REG_DWORD /d 0 /f +sc stop wuauserv +sc config wuauserv start=disabled +sc stop WaaSMedicSvc +sc config WaaSMedicSvc start=disabled +reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\InstallService\State /v AutoUpdateLastSuccessTime /t REG_SZ /d "2100-01-01T00:00:00+08:00" /f +reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings /v PauseFeatureUpdatesStartTime /t REG_SZ /d "2100-01-01T00:00:00Z" /f +reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings /v PauseQualityUpdatesStartTime /t REG_SZ /d "2100-01-01T00:00:00Z" /f +reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings /v PauseUpdatesExpiryTime /t REG_SZ /d "2100-01-01T00:00:00Z" /f +reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings /v PauseFeatureUpdatesEndTime /t REG_SZ /d "2100-01-01T00:00:00Z" /f +reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings /v PauseQualityUpdatesEndTime /t REG_SZ /d "2100-01-01T00:00:00Z" /f +``` +将以上命令保存为.bat文件,运行即可。 +``` +::Windows auomatic updates +reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU /v AutoInstallMinorUpdates /t REG_DWORD /d 0 /f +reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU /v NoAutoUpdate /t REG_DWORD /d 0 /f +reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU /v AUOptions /t REG_DWORD /d 0 /f +reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v AUOptions /t REG_DWORD /d 4 /f +reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v DisableWindowsUpdateAccess /t REG_DWORD /d 1 /f +reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v ElevateNonAdmins /t REG_DWORD /d 1 /f +reg add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoWindowsUpdate /t REG_DWORD /d 0 /f +reg add "HKLM\SYSTEM\Internet Communication Management\Internet Communication" /v DisableWindowsUpdateAccess /t REG_DWORD /d 1 /f +reg add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\WindowsUpdate /v DisableWindowsUpdateAccess /t REG_DWORD /d 1 /f +sc config wuauserv start=auto +sc start wuauserv +sc config WaaSMedicSvc start=auto +sc start WaaSMedicSvc +reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\InstallService\State /v AutoUpdateLastSuccessTime /t REG_SZ /d "2000-01-01T00:00:00+08:00" /f +reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings /v PauseFeatureUpdatesStartTime /t REG_SZ /d "2000-01-01T00:00:00Z" /f +reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings /v PauseQualityUpdatesStartTime /t REG_SZ /d "2000-01-01T00:00:00Z" /f +reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings /v PauseUpdatesExpiryTime /t REG_SZ /d "2000-01-01T00:00:00Z" /f +reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings /v PauseFeatureUpdatesEndTime /t REG_SZ /d "2000-01-01T00:00:00Z" /f +reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings /v PauseQualityUpdatesEndTime /t REG_SZ /d "2000-01-01T00:00:00Z" /f +pause +``` +以上为恢复更新的脚本。 \ No newline at end of file diff --git a/public/accurate-pronunciation/index.html b/public/accurate-pronunciation/index.html index d290a63..7921aec 100644 --- a/public/accurate-pronunciation/index.html +++ b/public/accurate-pronunciation/index.html @@ -149,7 +149,7 @@ - Windows二级菜单恢复及设置开机启动  + Windows二级菜单恢复及设置开机启动及彻底关闭更新  diff --git a/public/archive/index.html b/public/archive/index.html index 0b848f9..3915886 100644 --- a/public/archive/index.html +++ b/public/archive/index.html @@ -263,7 +263,7 @@
  • - :: Windows二级菜单恢复及设置开机启动 + :: Windows二级菜单恢复及设置开机启动及彻底关闭更新 :: diff --git a/public/atom.xml b/public/atom.xml index 2c51a9a..2ddcdd3 100644 --- a/public/atom.xml +++ b/public/atom.xml @@ -348,7 +348,7 @@ - Windows二级菜单恢复及设置开机启动 + Windows二级菜单恢复及设置开机启动及彻底关闭更新 2023-08-26T00:00:00+00:00 2023-08-26T00:00:00+00:00 diff --git a/public/mechrev-keyboard/index.html b/public/mechrev-keyboard/index.html index 96afc7f..9c7fdf9 100644 --- a/public/mechrev-keyboard/index.html +++ b/public/mechrev-keyboard/index.html @@ -261,7 +261,7 @@   - Windows二级菜单恢复及设置开机启动 + Windows二级菜单恢复及设置开机启动及彻底关闭更新 diff --git a/public/page/5/index.html b/public/page/5/index.html index d18d4e8..1fa7970 100644 --- a/public/page/5/index.html +++ b/public/page/5/index.html @@ -112,7 +112,7 @@
    -

    Windows二级菜单恢复及设置开机启动

    +

    Windows二级菜单恢复及设置开机启动及彻底关闭更新