csx 发表于 2024-1-24 16:21

永久关闭Windows更新

前言:
论坛内已经有很多方法或程序可以实现关闭Windows更新
接下来要介绍的方法会有所不同,供大家参考和借鉴


具体操作:
Windows Update Agent是Windows实现系统更新的重要组件之一
主要负责与微软服务器通信,检查并下载更新
Windows Update Agent组件主要有以下文件


C:\Windows\System32\

wuapi.dll
wuapi.dll.mui
wuapihost.exe
wuauclt.exe
wuaueng.dll
wuaueng.dll.mui

C:\Windows\SysWOW64\

wuapi.dll
wuapi.dll.mui

了解了这些信息之后
直接将C:\Windows\System32\和C:\Windows\SysWOW64\
两个文件夹内的相关文件移除即可

移除相关文件后,Windows更新将直接报错,无法检查、下载Windows更新
一劳永逸
同样,想要恢复更新时,只需将移除的相关文件再放置到对应路径位置即可

移除相关的文件需要登录账户具有管理员权限和系统内置账户TrustedInstaller权限
可以使用管理员身份运行以下批处理脚本
将相关文件直接移动至桌面实现文件从System32和SysWOW64文件夹中的移除

@echo off
setlocal enabledelayedexpansion

:: Step 1: Grant TrustedInstaller permissions to specified files in System32 folder
takeown /f C:\Windows\System32\wuapi.dll /a
icacls C:\Windows\System32\wuapi.dll /grant administrators:F

takeown /f C:\Windows\System32\wuapihost.exe /a
icacls C:\Windows\System32\wuapihost.exe /grant administrators:F

takeown /f C:\Windows\System32\wuauclt.exe /a
icacls C:\Windows\System32\wuauclt.exe /grant administrators:F

takeown /f C:\Windows\System32\wuaueng.dll /a
icacls C:\Windows\System32\wuaueng.dll /grant administrators:F

:: Step 2: Move files to Desktop\System32 folder
if not exist "%userprofile%\Desktop\System32" mkdir "%userprofile%\Desktop\System32"
move /y C:\Windows\System32\wuapi.dll "%userprofile%\Desktop\System32\"
move /y C:\Windows\System32\wuapihost.exe "%userprofile%\Desktop\System32\"
move /y C:\Windows\System32\wuauclt.exe "%userprofile%\Desktop\System32\"
move /y C:\Windows\System32\wuaueng.dll "%userprofile%\Desktop\System32\"

:: Step 3: Grant TrustedInstaller permissions to specified files in SysWOW64 folder
takeown /f C:\Windows\SysWOW64\wuapi.dll /a
icacls C:\Windows\SysWOW64\wuapi.dll /grant administrators:F

:: Step 4: Move files to Desktop\SysWOW64 folder
if not exist "%userprofile%\Desktop\SysWOW64" mkdir "%userprofile%\Desktop\SysWOW64"
move /y C:\Windows\SysWOW64\wuapi.dll "%userprofile%\Desktop\SysWOW64\"

echo.
echo Task completed successfully. Press any key to exit.
pause > nul


复制以上批处理脚本,粘贴至记事本内,
另存为:关闭系统更新.bat
保存类型:所有文件
编码:ANSI

再使用管理员身份运行脚本即可

页: [1]
查看完整版本: 永久关闭Windows更新