我一直在使用远程桌面连接进入工作站。但在这种环境下,我无法使用开始菜单中的电源选项。我需要另一种方法来关闭或重新启动。

如何通过命令行控制计算机的电源状态?


当前回答

使用shutdown命令最常见的方法有:

shutdown -s — Shuts down. shutdown -r — Restarts. shutdown -l — Logs off. shutdown -h — Hibernates. Note: There is a common pitfall wherein users think -h means "help" (which it does for every other command-line program... except shutdown.exe, where it means "hibernate"). They then run shutdown -h and accidentally turn off their computers. Watch out for that. shutdown -i — "Interactive mode". Instead of performing an action, it displays a GUI dialog. shutdown -a — Aborts a previous shutdown command.

上面的命令可以与这些附加选项组合:

-f -强制程序退出。防止关机过程被卡住。 -t <seconds> -设置直到关机的时间。使用-t 0立即关机。 -c <message> -添加一个关闭消息。消息将在事件日志中结束。 -y -对所有关机查询强制回答“是”。 注意:此选项在任何官方文档中都没有记录。是由这些StackOverflow用户发现的。


我想确定一些其他的很好的答案也被提到了。这里没有特别的顺序。

JosephStyons的-f选项 从VonC使用rundll32 迪恩的运行框 从Kip远程关机

其他回答

使用shutdown命令最常见的方法有:

shutdown -s — Shuts down. shutdown -r — Restarts. shutdown -l — Logs off. shutdown -h — Hibernates. Note: There is a common pitfall wherein users think -h means "help" (which it does for every other command-line program... except shutdown.exe, where it means "hibernate"). They then run shutdown -h and accidentally turn off their computers. Watch out for that. shutdown -i — "Interactive mode". Instead of performing an action, it displays a GUI dialog. shutdown -a — Aborts a previous shutdown command.

上面的命令可以与这些附加选项组合:

-f -强制程序退出。防止关机过程被卡住。 -t <seconds> -设置直到关机的时间。使用-t 0立即关机。 -c <message> -添加一个关闭消息。消息将在事件日志中结束。 -y -对所有关机查询强制回答“是”。 注意:此选项在任何官方文档中都没有记录。是由这些StackOverflow用户发现的。


我想确定一些其他的很好的答案也被提到了。这里没有特别的顺序。

JosephStyons的-f选项 从VonC使用rundll32 迪恩的运行框 从Kip远程关机

原答案:2008年10月

你还得到了所有的“rundll32.exe shell32.dll”系列:

(见下文更新)

rundll32.exe user.exe,**ExitWindows**[快速关闭Windows] rundll32.exe user.exe,**ExitWindowsExec**[重启Windows] n . rundll32.exe shell32.dll,SHExitWindowsEx

其中n代表:

0 -注销 1 -关机 2 -重启 4 -力 8 -关机

(可组合-> 6 = 2+4 FORCE REBOOT)


2015年4月更新(6年以上):

1800 INFORMATION在评论中指出:

不要为此目的使用rundll32.exe。它期望您在命令行传递的函数具有非常特定的方法签名——它与ExitWindows的方法签名不匹配。

Raymond CHEN写道:

在2004年,“当你不匹配调用约定时,会出什么问题?”:

rundll32.exe调用的函数需要的函数签名是:

void CALLBACK ExitWindowsEx(HWND hwnd, HINSTANCE hinst,
       LPSTR pszCmdLine, int nCmdShow);

这并没有阻止人们使用rundll32来调用不是被rundll32调用的随机函数,比如user32 LockWorkStation或user32 ExitWindowsEx。

(哦)

ExitWindowsEx的实际函数签名是:

BOOL WINAPI ExitWindowsEx(UINT uFlags, DWORD dwReserved);

2011年:《在人行道上扔垃圾:rundll32项目的悲惨历史》

更明确地说:

什么时候使用rundll32的指导是什么?简单:不要用它”:

Rundll32是Windows 95遗留下来的,至少从Windows Vista开始就被弃用了,因为它违反了许多现代工程指南。

当远程进入一台机器(目标是Windows XP;我不确定目标Windows Vista),尽管开始菜单上的关机被断开连接会话或类似的东西所取代,应该有一个叫做“Windows安全”,它也做同样的事情,如欧文指出的Ctrl + Alt +结束。

你可能已经意识到了这一点,但以防万一:在“运行”框中输入shutdown -r(或任何你喜欢的命令)并按enter要容易得多。

节省留下批处理文件到处躺着。

没有人提到远程关机的-m选项:

shutdown -r -f -m \\machinename

另外:

-r参数会导致重新启动(这通常是您在远程计算机上想要的,因为物理启动它可能很困难)。 -f参数选项强制重启。 当然,您必须拥有适当的特权才能关闭远程计算机。