Get a List of all Installed Programs (and Updates) from cmd

This is the list that most of us need at times.

For me, the scenario was I needed to compare the softwares installed on two boxes.

Alright then, lets go step by step

1. Open Command Prompt on your machine.

2. To display the list of All Programs installed, go on with

WMIC 
product get name,version


You'll get this




3. To export this list to a text file, use the following command.
wmic
/output:d:\ProgramList.txt product get name,version



The output will be somewhat,



4. To get a list of installed updates

WMIC 
/output:d:\UpdatelList.txt QFE get


Thats all for the day :)



Comments

Popular posts from this blog

VS 2012: No exports were found that match the constraint : ContractName

How to Tweak the New Multi-Monitor Taskbar in Windows 8