Share via


Powershell command to see what’s installed

Here is a quick little Powershell script that I find useful to see what I have installed on my system.

This will return the installed program and the date that it was installed:

get-wmiobject -class "win32reg_addremoveprograms" -namespace "root\cimv2" | select-object -property Displayname,Installdate

To run this against a remote computer just add a –Computername “computername” before the first pipe.