我想自动化一些在我的 Windows cmd.exe 上运行的命令。
我想执行的命令:
光盘\
pscp.exe
我无法执行,但到目前为止我可以通过我的代码打开 cmd.exe。
我的代码:
string cd = @"C:\>cd\";
string pscp = @"C:\>pscp.exe";
ProcessStartInfo startinfo = new ProcessStartInfo();
Process.Start(@"C:\Windows\system32\cmd.exe",pscp);
Console.ReadLine();