4

I have a Windows 7 desktop that I login to remotely. Something happened and one of the programs froze, and caused the session to freeze. I can remote into the system and get to the login screen, but after typing in the password, I just see the blue login screen with the "please wait" pinwheel.

Is there any way to remotely restart the computer or the user session? The system only has one user, the logged in one. I am 200 miles away on vacation, so remote solutions are best. Thanks for the help.

karel
  • 13,706
Bogdan
  • 211

3 Answers3

9

you can connect to a command prompt remotely with psexec. run a command prompt as admin on your localhost, and enter:

psexec \\remotecomputername -u username -p password cmd 

psexec will connect to the remote computer and display a command prompt executing on it. then enter

shutdown -r -t 1

to reboot the machine. your psexec connection will terminate in the process.

I usually start pinging the host (with -t99 in windows) before issuing the shutdown, so I can watch it go down, and come back up.

Frank Thomas
  • 37,476
4

Assuming you are using the Windows Remote Desktop service included with most all windows computers, Simultaneously press the "Ctrl", "Alt", and "End" buttons. This should bring up a dialog that will give you shutdown and restart options.

Another method of doing such a thing (though I am not sure this could be completed from the logon screen) is opening up the Run prompt (via pressing the "Windows" and "R" Keys) and then entering "shutdown -f -r -t 1" into the prompt.

Ben Franchuk
  • 1,769
-1

Just had this problem and googled it. You can get out of the frozen screen on your remote access by pressing control alt end

linda
  • 1