Print all installed applications

Joined
Feb 11, 2019
Messages
1
Reaction score
0
Does anyone know how I can print out Control Panel\Programs\Programs and Features in Windows 10? I did the wmic thing, but it does not list the features and all programs. Sure hope someone knows this. :)
 

Attachments

  • Screenshot 2019-02-11 14.41.56.webp
    Screenshot 2019-02-11 14.41.56.webp
    105.2 KB · Views: 221
Welcome to the forum @oopshoopes :).

You maybe able to get this list by using PowerShell. If you right click the start button and select PowerShell, then run the following command:

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

This should generate a list of all applications installed and then save it to a .txt file located at C:\InstalledApps.txt which you can then load in a text editor and print.
 
Back
Top