两行代码永久关闭windows 更新 Posted on 2024-08-14 In daily Views: Views: Valine: 原文链接:两行代码永久关闭windows 更新 导言windows每次更新都会占用很长时间,而且会多出一堆没用的功能,最气人的时有时候会在你急需使用的时候强制更新. 有时候电脑风扇突然狂转,查看进程后发现windows的installer和update服务一直在吃资源,关闭后就没有问题了,但是这两个服务一直会重启,为了解决这个,我们直接创建一个监视进程的bat文件,每30s就强制关闭这两个进程,这样就不会一直更新了. 12345678@echo off:loop REM shutdown "TiWorker.exe" and "windows update" taskkill /F /IM "TiWorker.exe" sc.exe stop wuauserv timeout /t 30 /nobreak >nul goto loop Post author: yasuo626,adamalbert Post link: http://blog.aidroid.top/daily/24_8_14/ Copyright Notice: All articles in this blog are licensed under BY-NC-SA unless stating additionally.