Forum Discussion
mohit129933mp
Feb 07, 2023Copper Contributor
Get the list of gui apps or control-panel add/remove apps list in windows using powershell
Hi Community,
I'm looking for a powershell command which can either list all the installed GUI application,
Or command that can list the exact list as add/remove programs in control-panel.
After going through stackoverflow,etc didn't see any command that can give the exact list.
I've tried the following commands already:
- Get-WmiObject
- Get-Package
- Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*
- Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*
- Reg Query HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall
- REG QUERY HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
All the above command either list more than the required apps or not all apps. Also cannot filter the results to achieve the exact add/remove programs list.