在C#中使用shutdown.exe关闭另一个系统?

时间:2012-11-23 05:50:00

标签: c# asp.net remoting shutdown system-shutdown

我使用以下代码关闭自己的System.It工作正常。我需要关闭另一个在LAN连接中连接的系统。我无法使用此代码执行此操作。如何使用shutdown.exe关闭另一个系统?我的操作系统是windows7。

using System.Diagnostics;


        protected void Button1_Click(object sender, EventArgs e)
        {
            Process.Start("shutdown.exe", "-s -t 00");

        }

2 个答案:

答案 0 :(得分:1)

菜单开始 - >运行 - >输入cmd->按enter键

以cmd类型

shutdown /?

你可以看到帮助,根据帮助你需要的钥匙是

   /m \\computer Specify the target computer.

答案 1 :(得分:1)

为了完整性:

Process.Start("shutdown.exe", "-s -t 00 \\computer");