Skip to content

Instantly share code, notes, and snippets.

@Goadstir
Created January 8, 2020 20:26
Show Gist options
  • Select an option

  • Save Goadstir/b04a98b5ed5b1bb0b4aed49a16bee48d to your computer and use it in GitHub Desktop.

Select an option

Save Goadstir/b04a98b5ed5b1bb0b4aed49a16bee48d to your computer and use it in GitHub Desktop.
PowerShell: Get List of Installed Applications
# Get the installed software from your Windows Operating Systems
# From the WMI Object perspective
Get-WmiObject -Class Win32_Product | Sort-Object Name | Select-Object Name,Vendor,Version,Caption | Format-Table -AutoSize
# From the registry perspective
Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Sort-Object DisplayName | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table -AutoSize
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment