Re: Accessing Add/Remove Programs Details

2006-09-08 Thread Tim Golden
Phoe6 wrote: > Tim Golden wrote: > > [Phoe6] > > and perhaps you need something like > > this (altho' obviously more sophisticated): > > > > import wmi > > > > appname = "Python 2.4.3" > > c = wmi.WMI () > > for product in c.Win32_Product (Caption=appname): > > print product.Caption > > # prod

Re: Accessing Add/Remove Programs Details

2006-09-08 Thread Phoe6
Tim Golden wrote: > [Phoe6] > and perhaps you need something like > this (altho' obviously more sophisticated): > > import wmi > > appname = "Python 2.4.3" > c = wmi.WMI () > for product in c.Win32_Product (Caption=appname): > print product.Caption > # product.Uninstall () > > Thanks Tim for

RE: Accessing Add/Remove Programs Details

2006-09-07 Thread Tim Golden
[Phoe6] | I have to uninstall an application and I don't find the uninstaller, | the option available to me is to access Add/Remove Programs, | select the | application and remove from there. | | I am trying to automate this task using Python: | 1) Get the Application Name | 2) Access the Add/R

Accessing Add/Remove Programs Details

2006-09-07 Thread Phoe6
Hi all, I have to uninstall an application and I don't find the uninstaller, the option available to me is to access Add/Remove Programs, select the application and remove from there. I am trying to automate this task using Python: 1) Get the Application Name 2) Access the Add/Remove Program det