Skip to content

Instantly share code, notes, and snippets.

@Bouni
Last active September 28, 2022 08:17
Show Gist options
  • Save Bouni/15aa70f61174abbf37af869d68662e8a to your computer and use it in GitHub Desktop.
Save Bouni/15aa70f61174abbf37af869d68662e8a to your computer and use it in GitHub Desktop.
Get a list of installed programs on Windows 10
Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Where-Object {$_.Publisher -notlike "Microsoft*" -and $_.Publisher -ne $Null} | Sort-Object -Property Publisher | 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