I've setup a computer for a client that automatically loads MSTSC as the default windows shell, and connects to the Terminal Server.

The problem is when they log out of the session, they must restart their computer to restart the rdp session. I've locked down the desktop so they can't interact with the local computer.

How do I set it up so that MSTSC will automatically reconnect to the TS after they log out of the session?

Thanks in advance!

link|improve this question
feedback

2 Answers

You could write a tiny wrapper program which does nothing else than run the Terminal Services Client in an endless loop (waiting for exit, obviously) and set that one as the shell.

link|improve this answer
feedback
@echo off
:foo
mstsc /v:someserver
goto :foo
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.