Windows 10

Get list of installed software on machine from command line

This is handy command line if you want pull quickly list of installed software on the machine. You can output it in to terminal or into text file for latter. As well you can easy to uninstall any application from the list on machine from command line in the same terminal.

  • Simply press Windows key + R
  • Type cmd
  • Open the Command  Prompt as an Administrator

List installed software on the machine:

1
wmic product get name

If you want to uninstall software from the list on the machine from the same command line – lets say I want to Uninstall iCloud app:

1
wmic product where product ‘name like iCloud’ call uninstall /nointeractive

Hope you find it useful.

 

Leave a Reply