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

Windows 10's God Mode

God Mode  in Windows 10 gives you quick access to a ton of handy settings in one place.  Right-click on the desktop and go to New > ...