我想使用cscript.exe运行vbscript文件。 我搜索了很多,但没有找到任何方法,而我可以使用cmd与cscript.exe
运行我的脚本这是我的代码
Process p = new Process();
p.StartInfo.Arguments = @"C:\\Program Files\\VDIWorkLoad\\WorkLoadFile\\open test.vbs";
p.StartInfo.FileName = "testing";
p.StartInfo.UseShellExecute = false;
try
{
p.Start();
p.WaitForExit();
Console.WriteLine("Done.");
}
任何想法我如何使用cscript.exe
答案 0 :(得分:1)
您应该将FileName属性设置为您要运行的可执行文件。在您的情况下,cscript.exe
而不是testing
:
p.StartInfo.Arguments = @"""C:\Program Files\VDIWorkLoad\WorkLoadFile\open test.vbs""";
p.StartInfo.FileName = @"C:\Windows\System32\cscript.exe";