这就是我所拥有的
strPath = "C:\Scripts\vba\gggg.vbs"
Set objShell = CreateObject("WScript.Shell")
objShell.Run Chr(34) & strPath & Chr(34), 1, True
我一直在strPath = "C:\Scripts\vba\gggg.vbs"
收到错误
答案 0 :(得分:-1)
使用Shell + Explorer.exe打开vbs文件...
实施例
Option Explicit
Public Sub Example()
Shell "Explorer.exe ""C:\Temp\FileName.vbs""", 1
End Sub