Created
April 18, 2025 09:45
-
-
Save ArtemAvramenko/2b3afd30d8d626ec44862c11e5b87b4d to your computer and use it in GitHub Desktop.
A one-line script that displays all installed software on the PC
This file contains 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\* , HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | ForEach-Object { if ($_.DisplayName -eq $null) {$_.PSChildName} else {$_.DisplayName} } | Sort-Object | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment