List all installed programs with PowerShell

List installed programs with PowerShell To list the programs installed on your machine, open PowerShell, copy / paste the following command and press Enter. You will see the list of all the installed programs on your computer or server. Get-ItemProperty HKLM:SoftwareWow6432NodeMicrosoftWindowsCurrentVersionUninstall* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize To export the list to …

List all installed programs with PowerShell Read More »