Create a list of all you installed programs

In order to create a list of all your installed programs you need to:

  1. Open Windows PowerShell and paste this command:

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

  2. Select and copy (CTRL+C) the generated text
  3. Open notepad or other text editor and paste (CTRL+V) the list.

Thank you! I just reinstalled my computer and really needed that quick instructions.