Windows list installed software

How to extract a list of installed software (actually a list of software that can be uninstalled).

The best way is to install CCleaner, Tools, lower right corner print uninstall list to text file.

Otherwise, there is the following but it doesn’t make a very complete list

Windows 7, 8 or 10

Open command prompt as administrator

type the following:

powershell

Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate > "C:\InstallList.txt"

 

Done

 

 

Comments are closed.