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

vbs实现右键菜单中添加CMD HERE

程序员文章站 2022-06-23 21:19:04
右键菜单中添加cmd here 复制代码 代码如下:set wshshell=createobject("wscript.shell")  w...
右键菜单中添加cmd here
复制代码 代码如下:

set wshshell=createobject("wscript.shell") 
wshshell.regwrite "hkey_local_machine\software\classes\folder\shell\cmd here\","" 
wshshell.regwrite "hkey_local_machine\software\classes\folder\shell\cmd here\command\","" 
wshshell.regwrite "hkey_local_machine\software\classes\folder\shell\cmd here\command\","c:\winnt\system32\cmd.exe /k cd %1","reg_sz" 
wscript.echo "操作成功" 
set wshshell=nothing