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

用vbs操作注册表实例代码

程序员文章站 2022-07-04 20:47:13
打开或关闭cmd:   dim wshshell, r, m, v, t, g dim&nb...
打开或关闭cmd:

  dim wshshell, r, m, v, t, g
dim i

on error resume next

set wshshell=wscript.createobject("wscript.shell")
v="hkey_current_user\software\policies\microsoft\windows\system\disablecmd"
i="reg_dword"
t="命令提示窗口开关"

r=wshshell.regread(v)
g=1

if (r=1) then g=0
if g=1 then
 wshshell.regwrite v,1,i
 m=msgbox("是否限制命令提示窗口?",3,t)
else
 wshshell.regdelete v
 m=msgbox("是否解除命令提示窗口限制?",3,t)
end if

  将以上内容复制到记事本中,将文件另存为*.vbs即可!

  打开或关闭注册表:

dim wshshell,r,m,v,t,g,i

on error resume next

set  wshshell=wscript.createobject("wscript.shell")
 v="hkcu\software\microsoft\windows\currentversion\policies\system\disableregistrytools"
 i="reg_dword"
 t="注册表开关"
 r=wshshell.regread(v)
 g=1

if r=1 then g=0
if g=1 then
 wshshell.regwrite v,1,i
 m=msgbox("是否限制注册表编辑器?",4,t)
else
 wshshell.regdelete v
 m=msgbox("是否解除注册表编辑器限制?",4,t)
end if

  也是将以上内容复制到记事本中,将文件另存为*.vbs即可!

  打开或关闭任务管理器:

dim wshshell, r, m, v, t, g
dim i

on error resume next

set wshshell=wscript.createobject("wscript.shell")
v="hkcu\software\microsoft\windows\currentversion\policies\system\disabletaskmgr"
i="reg_dword"
t="任务管理器开关"

r=wshshell.regread(v)
g=1

if (r=1) then g=0
if g=1 then
 wshshell.regwrite v,1,i
 m=msgbox("是否限制任务管理器?",3,t)
else
 wshshell.regdelete v
 m=msgbox("是否解除任务管理器限制?",3,t)
end if

  也是将以上内容复制到记事本中,将文件另存为*.vbs即可!

  希望大家能用上以上脚本!