WMIC to list programs in add/remove programs

  • Thread starter Thread starter wiccachic
  • Start date Start date
W

wiccachic

Hey all. Can someone post the WMIC command line syntax to display
programs in add/remove programs? A WMI script will not help, has to be
WMIC please! Thanks in advance!
 
To simple list on the Console:

wmic product

To generate an HTML file:

wmic product get /format:hform.xsl > product.html
 
Jonathan said:
To simple list on the Console:

wmic product

To generate an HTML file:

wmic product get /format:hform.xsl > product.html

That won't be everything in Add/Remove programs - just the stuff that
was installed using Windows Installer... but then I don't think the
later is easily obtainable via WMIC... reallly need to write a script to
loop through the registry if you want a full list.

--

Best Regards,

James Crosswell
Microforge.net LLC
http://www.microforge.net
 
Back
Top