我正在尝试创建一个运行公共驱动器上的程序的VBScript。它不起作用。
我有:
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run """Z:\pathname\file.exe"""
Set WshShell = nothing
路径名和文件是找到文件的位置... 我收到以下错误:
System.ComponentModel.Win32Exception: The system cannot find the file specified
at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo)
路径名和文件名都是正确的,所以这不是错误。在将导演更改为cmd.exe
驱动器之后,我可以通过Z:
开始这一点,所以当我尝试通过VBScript运行它时,为什么会这样?