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

2010-06-29 Thread Varun Avashia
Of Tony Cappellini Sent: Tuesday, May 18, 2010 7:26 PM To: python-win32@python.org Subject: Re: [python-win32] Enable/disable Remote Desktop via Python Message: 4 Date: Tue, 18 May 2010 10:19:28 +1000 From: Mark Hammond skippy.hamm...@gmail.com Cc: Python-Win32 List python-win32@python.org Subject: Re

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

2010-05-18 Thread Tony Cappellini
Message: 4 Date: Tue, 18 May 2010 10:19:28 +1000 From: Mark Hammond skippy.hamm...@gmail.com Cc: Python-Win32 List python-win32@python.org Subject: Re: [python-win32] Enable/disable Remote Desktop via Python Message-ID: 4bf1dd10.2020...@gmail.com Content-Type: text/plain; charset=ISO-8859-1

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

2010-05-17 Thread Tony Cappellini
Message: 2 Date: Sun, 16 May 2010 14:45:30 -0400 From: Steven James steven.ja...@gmail.com To: python-win32@python.org Subject: Re: [python-win32] Enable/disable Remote Desktop via Python Message-ID: aanlktilrr3r6touf5fbis9qvm3c2lr_vf2lsguiei...@mail.gmail.com Content-Type: text/plain

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

2010-05-17 Thread Tim Roberts
Tony Cappellini wrote: But I need to enable/disable Remote Desktop login on the current machine, not a remote machine. I''ll play around with this set service remotedesktop enable But you said you needed to do this while you were remotely logged in yourself, right? If so, you need to be

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

2010-05-17 Thread Mark Hammond
On 18/05/2010 3:31 AM, Tim Roberts wrote: Tony Cappellini wrote: But I need to enable/disable Remote Desktop login on the current machine, not a remote machine. I''ll play around with this set service remotedesktop enable But you said you needed to do this while you were remotely logged in

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

2010-05-16 Thread Jerry Hill
On Sat, May 15, 2010 at 10:44 AM, Tony Cappellini cappy2...@gmail.com wrote: There is a checkbox in Control Panel to do this microsoft has provided it for the user. I want to enable/disable that checkbox via Python, and want to know how it can be done. You'll probably need to figure out what

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

2010-05-16 Thread Steven James
http://thebackroomtech.com/2007/05/18/how-to-enable-remote-desktop-on-a-windows-xp-machine-remotely/ That link explains how to do this remotely from a command line and by modifying a registry entry. I've scripted this with python before but can't find the code right now. Steven James On Sun,

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

2010-05-15 Thread Tony Cappellini
Message: 1 Date: Fri, 14 May 2010 10:07:57 -0700 From: Tim Roberts t...@probo.com To: Python-Win32 List python-win32@python.org Subject: Re: [python-win32] Enable/disable Remote Desktop via Python Message-ID: 4bed836d.50...@probo.com Content-Type: text/plain; charset=ISO-8859-1 Are you saying

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

2010-05-14 Thread Tim Roberts
Tony Cappellini wrote: 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. Are you saying that when you are remotely logged into

[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. :) --