Skip to main content

Jan

Use Powershell to find installed Software on Windows

1 min read

Quickly get a list of installed Software on your Windows workstation:

Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | 
Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | 
Sort-Object -Property DisplayName | Format-Table -AutoSize

 


Source: https://devblogs.microsoft.com/scripting/use-powershell-to-find-installed-software/

Sort Items: https://learn.microsoft.com/en-us/powershell/scripting/samples/sorting-objects?view=powershell-7.2