如何从Outlook调用vbs文件

时间:2017-01-21 11:27:40

标签: vba vbscript outlook outlook-vba

这就是我所拥有的

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"收到错误 enter image description here

1 个答案:

答案 0 :(得分:-1)

使用Shell + Explorer.exe打开vbs文件...

实施例

Option Explicit
Public Sub Example()
    Shell "Explorer.exe ""C:\Temp\FileName.vbs""", 1
End Sub