Re: [python-win32] pywin32 build 211 released

2008-06-04 Thread Tim Golden
And for those who are interested, I've updated the online docs I've cloned at: http://timgolden.me.uk/pywin32-docs to the new version. There's also a crude diff set which basically reflects the subversion status of the HTML I produce, but which might be of interest as an alternative view of the

[python-win32] Service does not start at windows boot but at user's login

2008-06-04 Thread stephane.poirot
Good morning, I'm currently building an application which involves two different processes : one is a service and the other one is a simple client. My client starts at user's login and the service should start at windows boot. I say 'should' because it seems that the service actually starts at

Re: [python-win32] Service does not start at windows boot but at user's login

2008-06-04 Thread Mark Hammond
XP and Vista both pull a few tricks to get you logged on before all services have started - there are no guarantees that all services will be started before any user programs. It's probably best to just have your client deal with the situation (either by blindly, but smartly, retrying, or by

Re: [python-win32] pythoncom warning: PyVARDESC

2008-06-04 Thread Mark Hammond
Tim: It appears we are hitting a VARKIND of VAR_DISPATCH. Does it happen for you on any typelibs I'm likely to have installed? Any idea what in your typelibs could cause this, so I can repro it in the test suite? MAPI.Session definitely does this Sadly I don't have that installed :( I

[python-win32] Standby/Hibernate

2008-06-04 Thread Rickey, Kyle W
What do I need to do to put my local computer into standby? I found the function: win32api.InitiateSystemShutdown(INT8Y4Y3B1, Tom Sucks, 300, False, False) but it seems to only shutdown/restart. -Kyle Rickey ___ python-win32 mailing list

Re: [python-win32] Service does not start at windows boot but at user's login

2008-06-04 Thread bob gailer
stephane.poirot wrote: Good morning, I'm currently building an application which involves two different processes : one is a service and the other one is a simple client. My client starts at user's login and the service should start at windows boot. I say 'should' because it seems that the