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