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

2010-06-29 Thread Varun Avashia
Behalf 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 Cc: Python-Win32 List Subject: Re: [python-win32] Enable/disable Remot

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 Cc: Python-Win32 List Subject: Re: [python-win32] Enable/disable Remote Desktop via Python Message-ID: <4bf1dd10.2020...@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed >>Or even if you do

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-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

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 To: python-win32@python.org Subject: Re: [python-win32] Enable/disable Remote Desktop via Python Message-ID: Content-Type: text/plain; charset="iso-8859-1" http://thebackroomtech.com/2007/05/18/how-to-ena

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, Ma

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 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 checking that ch

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 To: Python-Win32 List 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 that when you are rem

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

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

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

[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