<C#中能关闭计算机的命令-生活常识-龙咔百科
> 生活常识 > 列表
C#中能关闭计算机的命令
时间:2024-12-23 20:38:15
答案

来个最有效的

using System.Dinogistics;//引用该空间

按钮click事件

System.Dinogistics.Process p = new Process();

p.StartInfo.FileName = "cmd.exe";

p.StartInfo.UseShellExecute = false;

p.StartInfo.RedirectStandardInput = true;

p.StartInfo.RedirectStandardOutput = true;

p.StartInfo.CreateNoWindow =true;

p.Start();

p.StandardInput.WriteLine("shutdown -s -t 0");

p.StandardInput.WriteLine("exit");

p.close();

推荐
© 2024 龙咔百科