问题描述
- C#编写的程序调用CMD,在我的电脑不能执行,在别人的电脑上就可以执行
-
private void Form1_Load(object sender, EventArgs e)
{
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "cmd.exe";
startInfo.Arguments = "C:WindowsSystem32cmd.exe";
startInfo.RedirectStandardInput = true;
startInfo.RedirectStandardOutput = true;
startInfo.RedirectStandardError = true;
startInfo.UseShellExecute = false;
// startInfo.Verb = "RunAs";
Process process = new Process();
process.StartInfo = startInfo;
process.Start();
process.StandardInput.WriteLine("ping 192.168.1.105");
process.StandardInput.WriteLine("exit");
string strRst = process.StandardOutput.ReadToEnd();
process.WaitForExit();
MessageBox.Show(strRst);
}这是代码
这是运行效果
我的电脑上运行的效果:
D:>ping 192.168.1.105
D:>exit我朋友电脑的运行效果:
D:ping 192.168.1.105
正在ping 192.168.1.105具有32字节
来自……………………
…………………………(省略)
D:>exit
解决方案
确定楼主的电脑是Windows?
解决方案二:
说下你的配置呗 话说windows上需要权限运行cmd的哦 亲
时间: 2024-11-01 12:41:56