Customer Software List
- Press Start
- Type “Powershell” and hit Enter. Then, copy this command and click Enter:
Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize
- That will display the list of programs you have installed on your machine.
- To export this into a file, you need to copy that exact code again and then add a “>” followed by a directory to where you want to save it. For example:
Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize > c:\users\*yourname*\desktop\installedprograms.txt
So you add the “>”, enter the directory (youve chosen your desktop) and then add the filename you want to create.