How to List Add/Remove Programs on a Local/Remote Machine

Windows_7_Logo

Another quick post to show how to list installed programs in Add/Remove programs on local and/or remote machine(s).

wmi is what makes this possible and the command we need on local machine is as follows:

wmic product get name,version

– on remote one we have to add node parameter to our wmi statement:

wmic /node:”FQDN_Goes_Here” product get name,version

Either one can be exported by adding:

/format:csv > Export.csv

at the end.

That’s it!

One thought on “How to List Add/Remove Programs on a Local/Remote Machine

  1. Vincent Francis

    Using http://www.action1.com you can query all your endpoints for the list of installed software and filter by program name (e.g. which of your endpoints have a certain program installed). They offer freeware for up to 100 endpoints.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.