Skip to content

Instantly share code, notes, and snippets.

@felickz
Created February 23, 2017 19:50
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 felickz/8a68b7fde6c1403fd899e8c57f0ba34d to your computer and use it in GitHub Desktop.
Save felickz/8a68b7fde6c1403fd899e8c57f0ba34d to your computer and use it in GitHub Desktop.
Software inventory for Windows
Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | where { -not [str
ing]::IsNullOrEmpty($_.DisplayName) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment