Saturday, 5 October 2019

List of ALL installed programs in Windows


Method 1 - PowerShell

Open Power Shell as ADMIN

Run this command 

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



Check file InstalledProgramsPS.txt on C:\ Drive







Method 2 - wmic

open CMD as ADMIN
type wmic
At the "wmic:root\cli>" prompt, type the following command:

/output:C:\InstalledProgramsWMIC.txt product get name,version

Check file InstalledProgramsWMIC.txt on C:\ Drive


No comments:

Post a Comment

Updating Softwares of Computer

  open Power Shell as Administrator type  winget upgrade will show the list of available updates  type winget upgrade --ALL   to auto doownl...