gpt4 book ai didi

c# - 在 C# 中使用 PuTTY 运行 Unix 命令

转载 作者:行者123 更新时间:2023-11-30 19:16:07 25 4
gpt4 key购买 nike

<分区>

我正在尝试使用 C# 在 PuTTY 中运行 Unix 命令。我有以下代码。但是代码不起作用。我无法打开 PuTTY。

static void Main(string[] args)
{
Process cmd = new Process();
cmd.StartInfo.FileName = @"C:\Windows\System32\cmd";
cmd.StartInfo.UseShellExecute = false;
cmd.StartInfo.RedirectStandardInput = false;
cmd.StartInfo.RedirectStandardOutput = true;
cmd.Start();
cmd.StartInfo.Arguments = "C:\Users\win7\Desktop\putty.exe -ssh mahi@192.168.37.129 22 -pw mahi";
}

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