Skip to content

Instantly share code, notes, and snippets.

@bklockwood
bklockwood / get-installedsoftware.ps1
Created August 3, 2016 12:34
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 `