我有一个用 C# 编写的 Web 应用程序,它需要使用 WSCRIPT.EXE(来自 C:\WINDOWS\SYSTEM32)显示一个消息框。
// Show the message in a Windows Script Message Box
ps.FileName = "wscript.exe";
ps.Arguments = string.Format("\"{0}\" \"{1}\"", strScriptName, strCleanedAlertMessage);
ps.CreateNoWindow = true;
Process.Start(ps);
这在我的本地 PC 上按预期工作,但从我们的开发 Web 服务器运行时不起作用或出错。
我们在 Windows Server 2008 R2 上运行 IIS 7。
这可能吗?我是否需要在 Web 服务器上配置某些安全设置?
谢谢!