|
- @echo off
- cls
- :: 停止 Windows Update 服务
- net stop wuauserv
- net stop cryptSvc
- net stop bits
- net stop msiserver
- :: 删除更新缓存目录
- rmdir /s /q "%SystemRoot%\SoftwareDistribution\Download"
- rmdir /s /q "%SystemRoot%\SoftwareDistribution\DataStore"
- :: 重建目录结构
- md "%SystemRoot%\SoftwareDistribution\Download"
- md "%SystemRoot%\SoftwareDistribution\DataStore"
- :: 重置 Windows Update 组件
- regsvr32 /s /u msxml3.dll
- regsvr32 /s msxml3.dll
- :: 重启 Windows Update 服务
- net start wuauserv
- net start cryptSvc
- net start bits
- net start msiserver
- echo Windows Update cache has been cleared successfully.
- pause
复制代码 |
|