34
12
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.
Using Windows 8.1 Pro in remote session.
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".
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.
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.
2Do you only get "Disconnect" option in your remote session when you focus on the Desktop (click Show Desktop on bottom right) and hit Alt-F4? This shortcut (which, when focused on a program, closes it) will bring up the "Shut Down Windows" dialog box when the focus is on the Desktop. – ADTC – 2013-11-10T17:13:20.213
3Microsoft has always made it difficult to shutdown by remote session. This has been the case since Windows XP. I use the Process Explorer from Sysinternals as Taskmanager. It has the option to shutdown. But you can just as easy make a shortcut to
shutdown /s
. – Rik – 2013-11-10T17:21:53.3271@ADTC Yes, Alt+F4 brings up the dialog box with the options Disconnect, Sign out, Sleep, Shut down, and Restart. But this still requires that one already knows about this keyboard shortcut beforehand, and it's not as simple as two mouse clicks. You have to use the keyboard. – Samir – 2013-11-10T17:51:41.957
Well, that's Windows for ya :) (Anyway as others have suggested, you can just make a shortcut to the
shutdown
command and pin it somewhere convenient.) – ADTC – 2013-11-10T17:57:17.9531Interesting new way to use paranormal. – Kevin Panko – 2013-11-10T22:13:30.097