使用script.exe运行vb脚本

时间:2012-01-13 12:49:50

标签: c# .net process.start wsh

我想使用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

1 个答案:

答案 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";