Windows 10 create List of Installed Programs with no external programs

Windows 10 create List of Installed Programs with no external programs

How to Get a List of Installed Programs with Command Prompt and WMIC?

The list of installed programs on Windows can be obtained by using the WMIC command-line utility, which can access the WMI namespace. Run the elevated Command Prompt (use search and then run the app as Administrator), and execute the following command:

wmic product get name,Version

To export this list into a text file, run the following command:

wmic product get name,version /format:csv > C:\InstalledApps_%Computername%.csv

This command generates a CSV file with your computer name in the title. After command execution, open the drive C. There you will find a CSV file with your apps. In addition to the app’s names and versions, this list has the current computer name (it may be useful for further analysis or when you need to generate installed program lists from a few computers). Open this file using any text editor or Excel.

-----

To export this list into a text file, run the following command:

wmic product get name,version /format:csv > C:\InstalledApps_%Computername%.csv

This command generates a CSV file with your computer name in the title. After command execution, open the drive C. There you will find a CSV file with your apps. In addition to the app’s names and versions, this list has the current computer name (it may be useful for further analysis or when you need to generate installed program lists from a few computers). Open this file using any text editor or Excel.

------

Also, in modern Windows versions the WMIC utility allows you to generate a convenient HTML report:

wmic /output:c:\IstalledApps.htm product get Name, Version, Vendor /format:htable

Leave a Reply