[python-win32] using python com object implemented as Local Server from .NET

2009-07-09 Thread Sarah Abdel Razak
Hi all, I implemented a python com object and generated an exe for it . How can I use this exe to create an object for my server from .NET. I would appreciate your help. Thanks in advance. Regards -- Sarah Abdelrazak ___ python-win32 mailing

[python-win32] Python parser for Windows Event Logs

2009-07-09 Thread Tony Cappellini
Does anyone know if there is a Python module which will parse Windows Event Logs? Using the EventViewer is tedious, and I'd rather be abel to do this programmatically. Thanks ___ python-win32 mailing list python-win32@python.org

Re: [python-win32] Python parser for Windows Event Logs

2009-07-09 Thread Jaime Blasco
Check wmi module: http://timgolden.me.uk/python/wmi.html It has some functions to access windows logs.. Regards 2009/7/9 Tony Cappellini cappy2...@gmail.com Does anyone know if there is a Python module which will parse Windows Event Logs? Using the EventViewer is tedious, and I'd rather be

[python-win32] Fwd: Python parser for Windows Event Logs

2009-07-09 Thread Kevin Horn
-- Forwarded message -- From: Kevin Horn kevin.h...@gmail.com Date: Thu, Jul 9, 2009 at 11:26 AM Subject: Re: [python-win32] Python parser for Windows Event Logs To: Jaime Blasco jaime.bla...@alienvault.com Or just use pywin32...

Re: [python-win32] Python parser for Windows Event Logs

2009-07-09 Thread Tony Cappellini
Thanks, but those just monitor events. I need to pull some very specific data from an event log file, after I know the event has already occurred. Tim has another module called winsys, and there is an object which handles some aspects of reading event logs.

Re: [python-win32] Python parser for Windows Event Logs

2009-07-09 Thread Tim Golden
Tony Cappellini wrote: Thanks, but those just monitor events. I need to pull some very specific data from an event log file, after I know the event has already occurred. Tim has another module called winsys, and there is an object which handles some aspects of reading event logs.