gpt4 book ai didi

c# - 如何从 Windows 7 客户端计算机在远程 Windows 服务器上重新启动 IIS?

转载 作者:太空狗 更新时间:2023-10-30 01:00:31 25 4
gpt4 key购买 nike

我正在尝试从我的本地计算机 (Windows 7) 远程重启 iis (Windows Servr 2012)。命令行中的以下命令无法重新启动 IIS;

    iisreset servername /restart

但是当我在命令行中尝试时,下面的命令工作正常。

    psexec iisreset \\servername /restart

现在的问题是当我在 C# 中尝试使用以下代码时,

    Process process = new Process();
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.FileName = "cmd.exe";
startInfo.Arguments = "\C psexec iisreset \\servername /restart";
startInfo.RedirectStandardOutput = true;
startInfo.UseShellExecute = false;
process.StartInfo = startInfo;
process.Start();
// capture what is generated in command prompt
var output = process.StandardOutput.ReadToEnd();

如果我在上面的代码中给出任何其他参数,如“ipconfig”,它会给我预期的输出。但是当我尝试使用 psexec 时,它给出了空输出。但在命令提示符下尝试时效果很好。

我还尝试过在文件名中使用“psexec.exe”并在参数中删除“\C psexec”。但仍然没有运气。

你能请任何人帮我解决这个问题吗?

提前致谢。

最佳答案

我发现当像这样使用 PSexec 时你不应该使用 CMD.exe,你需要确保你有 psexec 的完整路径。即使它与您的应用程序 exe 位于同一目录中。

//Assume that psexec.exe is in same location as application
//Get directory of running applications
String AppPath = Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().CodeBase).Replace("file:\\","");

//Set up start infor details
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.UseShellExecute = false;

//Combine path of running app
startInfo.FileName = Path.Combine(AppPath, "psexec.exe");
startInfo.Arguments = "\\servername c:\path\to\iisreset /restart";

//Execute
Process nProc = Process.Start(startInfo);
nProc.Start();

关于c# - 如何从 Windows 7 客户端计算机在远程 Windows 服务器上重新启动 IIS?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45409228/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com