up vote 10 down vote favorite
1
share [g+] share [fb]

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.

link|improve this question

Good question. +1 – MattK311 Aug 16 '11 at 15:15
feedback

10 Answers

up vote 20 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!

link|improve this answer
feedback

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.

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

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)

link|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
feedback

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.
link|improve this answer
feedback

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)

link|improve this answer
woot!....let your freak flag fly VonC! nice. – Keng Oct 2 '08 at 14:10
feedback

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.

link|improve this answer
feedback

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.

link|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 Oct 2 '08 at 14:13
HAHAHAHA!!! awesome! – Keng Oct 9 '08 at 13:17
feedback

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.

link|improve this answer
feedback

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.

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

You can also shutdown your computer within a second or so by using the command line arguments of this free tool.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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