Get a List of all Installed Programs in Vista from your Command Line
- 3 Comment
Here’s a quick way to list all the programs installed on your computer using the command line interface. You can also export the list to an HTML or text file for printing.
The first thing we need to do is open a command Prompt.
- Click the Start Orb and type CMD in the search box.
- Click cmd.exe at the top of the search results.
- At the Cmd prompt type wmic and hit enter.
- You will now see wmic:root\cli>Type product get name,version hit enter.
Now after a few moments all you’re installed programs with their version numbers will be listed.
If you want to export the list to a HTML file, type /output:c:\ProgramList.htm product get name,version
or if you prefer a text file type /output:c:\ProgramList.txt product get name,version
You can also change the name and location of the file by replacing “c” and Programlist.txt to whatever you prefer.
RELATED POSTS:3 Comments on this post
Trackbacks
-
Greatful Reader said:
Thanks a million mate – I’ve been trying out scripts all day, but they all give only 40 of my 140 programs. Fancy having a utility like this pre-installed! You’re the greatest!
October 28th, 2009 at 11:19 am -
Kevin said:
@ Greatful Reader, Your very welcome.
Kevin.October 30th, 2009 at 6:16 pm -
sam said:
can also be used to get patches etc
wmic:root\cli>/output:C:\InstallList.txt QFE getFebruary 19th, 2010 at 1:42 am




