vote up 7 vote down star
2

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.

flag

8 Answers

vote up 3 vote down

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|flag
vote up 0 vote down

hi can some one please write a full code if I want to log off plz im a complete beginer and wants some help! I want to run batch file when the user logs off if any one who have the code please write it thanx

link|flag
that's not really what's going on here. you want a batch file to trigger WHEN someone logs off and that's an administration thing. do a search for that then put your batch file in there. – Keng Oct 3 '08 at 13:07
vote up 2 vote down

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|flag
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
vote up 2 vote down

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|flag
vote up 2 vote down

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|flag
woot!....let your freak flag fly VonC! nice. – Keng Oct 2 '08 at 14:10
vote up 6 vote down

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|flag
very good point! – Keng Oct 2 '08 at 13:50
vote up 5 vote down

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|flag
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
vote up 18 vote down check

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|flag

Your Answer

Get an OpenID
or

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