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