PowerShell Script to List Installed Software
Open PowerShell and copy paste the below command: Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize The above script will provide you a list of all your programs, complete with the version, name of the developer, and even the date you installed it. Check the below screen-shot. In order to export this … Read more