Marc Blase

Get list of installed programs with PowerShell in Windows

In PowerShell run:

To get a list of installed programs:

Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*  | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table -AutoSize > c:\Users\YOUR_USER\Documents\list-installed-programs.txt

To get a list of app store installed programs:

Get-AppxPackage | Select Name, PackageFullName |Format-Table -AutoSize > c:\Users\YOUR_USER\Documents\list-installed-programs.txt

NOTE: Yes, this is all over the internet, but I wanted it here so I could find it faster next time.

Published on October 15, 2019