Re: [PythonCE] Remotely uninstalling application

2007-08-08 Thread Luke Dunstan
> Date: Wed, 8 Aug 2007 09:49:06 +0300> From: [EMAIL PROTECTED]> To: > pythonce@python.org> Subject: Re: [PythonCE] Remotely uninstalling > application> > Hi, one stupid question where can i get ctypes :)> > - Petri ctypes is included wit

Re: [PythonCE] Remotely uninstalling application

2007-08-07 Thread Petri Wunsch
Hi, one stupid question where can i get ctypes :) - Petri 2007/8/8, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > Hello Petri, > > This module should do the trick (assume you have ctypes): > > uninstall.py : > > from ctypes import * > > DMProcessConfigXML = cdll.aygshell.DMProcessConfigXML > XML = u'

Re: [PythonCE] Remotely uninstalling application

2007-08-07 Thread alexandre . delattre
Hello Petri, This module should do the trick (assume you have ctypes): uninstall.py : from ctypes import * DMProcessConfigXML = cdll.aygshell.DMProcessConfigXML XML = u'''\ ''' def uninstall(app_name): ''' Removes the program designated

[PythonCE] Remotely uninstalling application

2007-08-07 Thread Petri Wunsch
Hi, I am trying to remotely/programmatically uninstall app from PPC 5.0 device. with python script. know it happens by sending XML file with details. As parameter to some app. So can anyone help me witch app should I call with the xml parameter. To do the uninstalling. thankyou in advance -Pet