Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been using Remote Desktop to get into a workstation but I'm not able to use the shutdown/restart function in the Start menu while doing this.

I've put a few really helpful options in the answer below.

As I cannot accept this answer, please vote up if you find it appropriate.

Note:
I wanted to make sure some really good answers were also mentioned along with my own on this.

And here they are in no particular order.

Thanks for participating guys! Great answers all.

share|improve this question
Good question. +1 – MattK311 Aug 16 '11 at 15:15

9 Answers

up vote 38 down vote accepted

Here's how to do the shutdown functions via a batch file.

shutdown -r ;;restarts
shutdown -s ;;shutsdown
shutdown -l ;;logoff
shutdown -t xx ;;number of seconds to wait till shutdown/restart/logoff
shutdown -i ;;gives you a dialog box to fill in what function you want to use
shutdown -a ;;aborts the previous shutdown command....very handy!

share|improve this answer

If you are on a remote machine, you may also want to add the -f option to force the reboot. Otherwise your session may close and a stubborn app can hang the system.

I use this whenever I want to force an immediate reboot:

shutdown -t 0 -r -f

Brutus 2006 is a utility that provides a GUI for these options.

share|improve this answer
very good point! – Keng Oct 2 '08 at 13:50

You also got all the "rundll32.exe shell32.dll" serie:

  • rundll32.exe user.exe,ExitWindows [Fast Shutdown of Windows]
  • rundll32.exe user.exe,ExitWindowsExec [Restart Windows]

    rundll32.exe shell32.dll,SHExitWindowsEx n

where n stands for:

  • 0 - LOGOFF
  • 1 - SHUTDOWN
  • 2 - REBOOT
  • 4 - FORCE
  • 8 - POWEROFF

(can be combined -> 6 = 2+4 FORCE REBOOT)

share|improve this answer
1  
woot!....let your freak flag fly VonC! nice. – Keng Oct 2 '08 at 14:10
whats the difference between shutdown and poweroff? – Asdfg Jun 16 '12 at 22:08
2  
@Asdfg today? none. For NT4 and before, the motherboard didn't always support power off, only shutdown (windows was completely closed, but the PC was still under electric power). Only poweroff (if the hardware supported it at the time) closed windows and cut the electic power. Today, both shutdown and poweroff do that. – VonC Jun 17 '12 at 8:26
@VonC : thats something new i learned today. Thanks for the follow-up. – Asdfg Jun 18 '12 at 0:47
I love this answer! Thanks @VonC, you're a legend! :-) I wish I could mark answers as favourites. – Doctor Jones Jul 26 '12 at 22:17

In a remote desktop session, you can also Ctrl + Alt + End to pull up the Task Manager and select Shutdown from the tool bar.

You can also right click on the task bar to pull up the Task Manager.

Ctrl + Shift + Esc will also work. (From Rich B)

share|improve this answer
oooooo....nice thought! – Keng Oct 2 '08 at 13:51
Cool, I never knew about Ctrl+Alt+End, and it has been the source of a lot of frustration over the years. – Kip Jan 6 '09 at 14:47

No one has mentioned -m option for remote shutdown:

shutdown -r -f -m \\machinename

Also:

  • The -r parameter causes a reboot (which is usually what you want on a remote machine, since physically starting it might be difficult).
  • The -f parameter option forces the reboot.
  • You must have appropriate privileges to shut down the remote machine, of course.
share|improve this answer

When remoted into a machine (target is XP anyway, not sure about target Vista), although Shutdown on the start menu is replaced by Disconnect Session or something like that, there should be one called 'Windows Security' which also does the same thing as Ctrl+Alt+End as pointed to by Owen.

share|improve this answer

You're probably aware of this, but just in case: it's much easier to just type "shutdown -r" (or whatever command you like) into the "Run" box and hit enter.

Saves leaving batch files lying around everywhere.

share|improve this answer
yep...I just like to have the double-click sitting there...that's what the -r bat file is for too ;o) – Keng Oct 2 '08 at 14:11
careful not to put it in programs->startup :) – Dean Rather Oct 2 '08 at 14:13
HAHAHAHA!!! awesome! – Keng Oct 9 '08 at 13:17

Another small tip: when going the batch file route, I like to be able to abort it in case I run it accidentally. So the batch file invokes the shutdown but leaves you at the command prompt afterwards.

@echo off
echo Shutting down in 10 seconds. Please type "shutdown /a" to abort.
cmd.exe /K shutdown /f /t 10 /r

Plus, since it's on a timer, you get about the same thrill as you do when hunting in The Oregon Trail.

share|improve this answer
1  
HAHAHAHha..."abert"..doh.."amort"...gah!!...ab...SHUTTING DOWN ...NEIAAAAHHHHHHGH – Keng Jun 10 '11 at 12:24

I would write this in notepad or wordpad for a basic logoff command...

@echo off shutdown -l

this is basically the same as clicking start and logoff manualy just slightly faster if you have the batch file ready.

share|improve this answer

protected by Brad Larson Nov 4 '12 at 22:08

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.