Skip to content

Instantly share code, notes, and snippets.

@bklockwood
Created August 3, 2016 12:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bklockwood/7de57f108d863a84e24848f9c85412c8 to your computer and use it in GitHub Desktop.
Save bklockwood/7de57f108d863a84e24848f9c85412c8 to your computer and use it in GitHub Desktop.
List installed software
Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | `
Where-Object {$_.Displayname -ne $null } | `
Select-Object Publisher, DisplayName, DisplayVersion | `
Sort-Object Publisher | `
Format-Table -AutoSize `
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment