Set shell = CreateObject("wscript.shell")
Do
shell.Run "cmd /c taskkill /f /im taskmgr.exe",vbHide'杀死taskmgr进程
WScript.Sleep 500 '每0.5秒执行一次
Loop
vbs禁用任务管理器
最新推荐文章于 2025-04-11 17:40:57 发布
Set shell = CreateObject("wscript.shell")
Do
shell.Run "cmd /c taskkill /f /im taskmgr.exe",vbHide'杀死taskmgr进程
WScript.Sleep 500 '每0.5秒执行一次
Loop