Getting installed applications with PowerShell

PHOTO EMBED

Sun Nov 17 2024 21:08:15 GMT+0000 (Coordinated Universal Time)

Saved by @baamn #powershell

invoke-command -ComputerName Server1 -ScriptBlock {$MyProgs = Get-ItemProperty 'HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\*'; $MyProgs += Get-ItemProperty 'HKLM:SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*' ; $MyProgs.DisplayName | sort -Unique
content_copyCOPY

https://forums.powershell.org/t/getting-installed-applications-with-powershell/23726