欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

用vbs实现解除注册表CMD、Regedit、Taskmgr限制的脚本代码

程序员文章站 2022-04-10 08:13:51
on error resume next set wshshell=wscript.createobject("wscript.sh...

on error resume next
set wshshell=wscript.createobject("wscript.shell")
with wscript.createobject("wscript.shell")
.regdelete"hkcu\software\microsoft\windows\currentversion\policies\system\disableregistrytools"
.regdelete"hkcu\software\policies\microsoft\windows\system\disablecmd"
.regdelete"hkcu\software\microsoft\windows\currentversion\policies\system\disabletaskmgr"
end with
mybox=msgbox(enab&vbcr&"程序运行限制已解除!",1024,"result")