[python-win32] Enable/disable Remote Desktop via Python

2010-05-13 Thread Tony Cappellini
On WinXP, under Control Panel/System/Remote - there is a check box to enable/disable Remote Desktop access. I need to toggle this- so I don't get disconnected by other users, when I'm connected to a system remotely. The desktop version of Windows- still doesn't allow concurrent multi-user logins

Re: [python-win32] Enable/disable Remote Desktop via Python

2010-05-13 Thread Michel Claveau
Hi! It is easy to stop/restart the service TermService under Windows 7 (or equivalent under other windows). @-salutations -- Michel Claveau ___ python-win32 mailing list python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32

Re: [python-win32] Enable/disable Remote Desktop via Python

2010-05-13 Thread Randy Syring
I think the OP was wanting to prevent other users from logging in while he is logged in remotely. He said he doesn't want to get disconnected. If that is the case, disabling TermService would kill his current session and be worse than a disconnect. :) --