34

When you right click the Windows 8.1 "start" button, you get some options to quickly perform common tasks, e.g. to shut down, reboot, or put the computer to sleep.

But when you're using the computer in a remote session, all of the shut down options are removed. You can't shut it down, you can't reboot, and you can't put it to sleep! All you can do is disconnect from the remote session.

Using Windows 8.1 Pro in local session.

a

Using Windows 8.1 Pro in remote session.

b

What's the reasoning behind this? Are there security reasons for why Microsoft has decided to remove these options from the "new" (reinvented) Start button? Have they overlooked this? And can I somehow add these options back, e.g. through some security policy edit maybe?

Besides the paranormal way of starting the Command Prompt (cmd.exe) and using the shutdown command, are there any other normal (user friendly) ways to shut down, reboot, or put the computer to sleep graphically (point and click)?

Update 1 - Group policy

There is actually a group policy that can remove the "Disconnect" option from the Shut down menu on Start button. You can find it in Computer Configuration, Administrative Templates, Windows Components, Remote Desktop Services, Remote Desktop Session Host, Remote Session Environment. The name of the policy is "Remove "Disconnect" option from Shut Down dialog".

c

This will also remove the Disconnect option from the Shut Down Windows dialog (i.e. Alt+F4).

This is quite the opposite of what I wanted. But is there perhaps another set of policy rules that will allow me to add the options Sleep, Shutdown and Restart to the Shut down menu on Start button?

Update 2 - Shortcuts

I ended up creating some shortcuts to the shutdown command on the remote desktop.

For shutting down...

C:\Windows\System32\shutdown.exe -s -t 20 -c "Bye bye!" -f -d p:0:0

For rebooting...

C:\Windows\System32\shutdown.exe -r -t 20 -c "See you later alligator!" -f -d p:0:0

If stuff happens...

C:\Windows\System32\shutdown.exe -a

I have them sitting in the upper right corner of the desktop. Hopefully I won't trigger them accidentally. But if I do there is the abort command. Here's what it looks like.

d

It would have been nice if I could add these shortcuts to the Shut down menu on the so called "Start" button. But this will do the job. It's a pity that it's not as easy as changing a group policy rule.

Samir
  • 21,235

6 Answers6

27

Windows 8 makes it less easy to click shutdown or restart through a Remote Desktop session. If you:

  • Click [Start Screen] > Settings > Power — you can only Disconnect.
  • Type Ctrl+Alt+End — you gain Lock, Sign-out, Change Password and Task Manager.
  • Right-click your User Account picture — you can Change Account Picture, Lock and Sign-out.
  • Create a desktop shortcut to shutdown

To shutdown through the UI, you must drop to the desktop (Windows key + D) and type Alt+F4 to reveal a shutdown dialogue box.

However, this assumes that the desktop actually has the focus and no other windows are open otherwise, Alt+F4 will simply close the active window.

So if you have multiple windows open, you’ll need to minimize them all first.

random
  • 15,201
chrisgaza
  • 426
23

Switch to the desktop and press AltF4. In the dialog that shows there will be a shutdown option.

kinokijuf
  • 8,364
12

The reasoning behind this is if you are working from a remote computer and you shut it down, how do you turn it back on? It is a "Safty" feature to prevent a remote computer from becoming in a unuseable state.

As for work arounds, shutdown really is the best way. You can always make a shortcut to the program with the command line arguments /s /t 0 included if you want a icon to do it. Or if you really must have a GUI you could have your shortcut be to shutdown /i, however I think that GUI is a lot more "abnormal" than typing something in the command line.

(One thing you may want to check, I don't have a windows 8 box in front of me to check, but from inside the RDP session do a Ctrl-Alt-End, this sends a Ctrl-Alt-Del to the remote computer and there may be a shutdown command from the menu that comes up)

4

Start Taskmgr replacements like ProcessExplorer or ProcesHacker. The provide shutdown functionality which also works for remote connections.

enter image description here

3

The way I do it is open a command prompt and to shutdown I type:

shutdown -s

To reboot:

shutdown -r
gronostaj
  • 58,482
-4

Cntrl + Alt + End Then click on the power button you have options to restart and shutdown with no command line or funky shortcuts.