Re: listener program in Python

2006-05-12 Thread bruno at modulix
[EMAIL PROTECTED] wrote: > [EMAIL PROTECTED] wrote: > > >>I basically want to remotely shut down windows from linux and write >>such a program in python. > FWIW, s/from linux/from another machine/ -- bruno desthuilliers python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for p

Re: listener program in Python

2006-05-12 Thread simon . hibbs
[EMAIL PROTECTED] wrote: > I basically want to remotely shut down windows from linux and write > such a program in python. You probably don't need to write a service in windows for this. All you need is to write your Linux python program with an SNMP library and configure the Windows box to accep

listener program in Python

2006-05-12 Thread diffuser78
I want to write a simple clinet/server program that does the following. On Windows, the program listens to the request from linux box On Linux Box, client program send server a shutdown request and the program at server i.e windows shuts windows sown, I basically want to remotely shut down windo