Skip to content

Instantly share code, notes, and snippets.

@jimbrig
Created August 14, 2020 06:30
Show Gist options
  • Select an option

  • Save jimbrig/c6857cdbf56bb5022378d75c193cf337 to your computer and use it in GitHub Desktop.

Select an option

Save jimbrig/c6857cdbf56bb5022378d75c193cf337 to your computer and use it in GitHub Desktop.
PowerShell: Get List of All Programs
Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize > C:\Users\jimbr\Documents\InstalledPrograms\InstalledPrograms.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment