我使用以下代码关闭自己的系统。它工作正常。我需要 关闭另一个系统,该系统连接在 LAN Connection中。我无法用这段代码做到这一点。如何使用 shutdown.exe 关闭另一个系统?我的操作系统是windows7。
using System.Diagnostics;
protected void Button1_Click(object sender, EventArgs e)
{
Process.Start("shutdown.exe", "-s -t 00");
}