gpt4 book ai didi

c# - 在 C# 中使用 putty 关闭 linux

转载 作者:太空宇宙 更新时间:2023-11-04 12:58:03 24 4
gpt4 key购买 nike

我在用 C# 编写从 Windows 关闭/重启 Linux 的应用程序时遇到了一些问题。

我正在尝试使用腻子来完成这项任务,但出了点问题。

            Process p = new Process();
ProcessStartInfo info = new ProcessStartInfo();
info.FileName = "putty.exe";
info.RedirectStandardInput = true;
info.UseShellExecute = false;
info.Arguments = @"root@192.168.0.25 -pw 1234qwer ";

p.StartInfo = info;
p.Start();

p.StandardInput.WriteLine("shutdown -h ");
p.StandardInput.WriteLine("exit");
string output = p.StandardOutput.ReadToEnd();
p.WaitForExit();
Console.WriteLine(output);

上面我粘贴了我用来实现这个目标的代码。一切都很好,直到我不得不在 putty 命令行中编写更多内容,在这种情况下,StandardInput 不是执行此操作的好方法,而且我没有找到其他方法来执行此操作。

我也尝试以同样的方式使用 PLINK.exe,但它也没有解决我的问题——事实上 PLINK 甚至没有出现。

任何解决此问题的想法或技巧都会很棒。

最佳答案

尝试 SSH.NET

using (var client = new SshClient("hostnameOrIp", "username", "password"))
{
client.Connect();
client.RunCommand("shutdown -h now;systemctl poweroff");
client.Disconnect();
}

关于c# - 在 C# 中使用 putty 关闭 linux,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35060567/

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