Forum Discussion

mohit129933mp's avatar
mohit129933mp
Copper Contributor
Feb 07, 2023

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:

  1. Get-WmiObject
  2. Get-Package
  3. Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*
  4. Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*
  5. Reg Query HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall
  6. 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.

Resources