kicking / logging out remote windows users?

17

9

I'd like to have something akin to a unix "who" and an option to kick out RDP sessions that are not supposed to be there (i.e. using up the limited number of connections). This is for a win2003 server Standard.

Additional info: this is a devel environment, people all use RDP as Administrator (I know, I know), so kicking out should be by session number or at least by remote IP/machine name, not per user.

Thanks!

Ira

Posted 2009-10-29T12:04:06.953

Reputation: 193

Answers

21

Refer this post on kicking the users.

The summary of the commands is as follows:

Use qwinsta to get a list of the Remote Sessions in the command window (Get the session Id of user to kick out):

qwinsta /server:SERVERIP

Use rwinsta to disconnect the remote session:

rwinsta /server:SERVERIP SESSIONID

Also you may want to change the default timeout for idle RDP connections.here or here.

Ganesh R.

Posted 2009-10-29T12:04:06.953

Reputation: 4 869

yup, I just found this post listing also quser and rwinsta: http://anandpv.spaces.live.com/blog/cns%21AFCCA5892B178862%21804.entry

Thanks!

– Ira – 2009-10-29T14:11:41.817

3

You should also be able to do this by pulling up Task Manager and going to Users and selecting users to Logoff or Disconnect. Disconnect will close their RDP session, but they can log back in to it. Logoff will... well, log off their current session.

MattGWagner

Posted 2009-10-29T12:04:06.953

Reputation: 191

2That would mean you were on the machine in question. What if you want to connect to a machine that is full already :) – Kip – 2009-10-29T16:03:50.307

0

For Windows 7 or other client OS from Microsoft, some of the MSTSC options will not work. As a last resort you may want to try restarting the machine (if that is an option)

shutdown /m mydevbox.myorg.com /r /f /t 0

Faiz

Posted 2009-10-29T12:04:06.953

Reputation: 130

0

mstsc /console or mstsc /admin should let you always log on, but it will kick off anyone else who's logged in using the same technique.

Tom Robinson

Posted 2009-10-29T12:04:06.953

Reputation: 2 350