Created
August 14, 2020 06:30
-
-
Save jimbrig/c6857cdbf56bb5022378d75c193cf337 to your computer and use it in GitHub Desktop.
PowerShell: Get List of All Programs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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