从C#应用程序运行.WSF脚本文件?

时间:2013-06-27 17:20:37

标签: c# wsh

我完全难过了。有没有办法让.wsf脚本通过c#应用程序(Windows论坛应用程序)运行?

1 个答案:

答案 0 :(得分:2)

我相信您可以使用Process.Start来调用脚本主机:

string scriptFile = GetWsfFileNameWithPath();
System.Diagnostics.Process.Start("WScript.exe", "//B //Nologo " + scriptFile);

有关命令行参数的详细信息,请参阅TechNet's article on running scripts from the command line