我完全难过了。有没有办法让.wsf脚本通过c#应用程序(Windows论坛应用程序)运行?
答案 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。