将命令读入命令行 C#
本文关键字:命令行 命令 | 更新日期: 2023-09-27 18:36:59
本质上我想做的是能够获取一个字符串
byte[] RecPacket = new byte[1000];
//Read a command from the client.
Receiver.Read(RecPacket, 0, RecPacket.Length);
//Flush the receiver
Receiver.Flush();
//Convert the packet into a readable string
string Command = Encoding.ASCII.GetString(RecPacket);
并让应用程序将其放入命令行本身,而无需用户执行此操作。 就我所做的研究而言,我找不到直接做到这一点的方法。 我找到了你这样做的迂回方式
switch (Command)
{
case "SHUTDOWN":
string shutdown = Command;
//Shuts it down
System.Diagnostics.Process SD = new System.Diagnostics.Process();
SD.StartInfo.FileName = "shutdown -s";
SD.Start();
break;
}
但这似乎不起作用,它也不允许你在 Windows 命令行中执行任何可用的命令。 我的目标是远程访问命令行并能够向其发送任何命令。 有人可以帮助我解决这个问题吗?
您可以使用
Process
类启动cmd
应用程序,并将输入重定向到Process.StandardInput
以便能够在控制台中执行命令:
ProcessStartInfo info = new ProcessStartInfo("cmd.exe");
info.UseShellExecute = false;
info.RedirectStandardInput = true;
var process = Process.Start(info);
并以这种方式使用它:
string command = "shutdown -s";
process.StandardInput.WriteLine(command);