1. 如何编写VBS脚本引导EXE程序后台启动运行
dim fso,f,ws
Set fso=CreateObject("Scripting.FileSystemObject")
Set f=Fso.GetFile(WScript.ScriptFullName)
Set Ws=CreateObject("WScript.Shell")
Ws.regwrite"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run\"&f.name,f.path ‘将自身设置为开机启动项
Ws.Run "程序路径",0,True '后台运行某个程序
fso.deletefile wscript.scriptfullname '删除自身
望采纳。
2. vbs 常用命令
1.点击WIN按钮,在运行对话框下面输入cmd,打开命令提示符窗口。
注意事项:
VBS, Microsoft Visual Basic Scripting Edition是Visual Basic编程语言家族的最新成员,它将灵活的脚本语言引入到更广泛的应用程序中,包括Microsoft Internet Explorer中的Web客户端脚本和Microsoft Internet Information Server中的Web服务器脚本。