I am trying to get all installed apps in the computers of my domain but i haven't found a way to get the information in an accurate way first i was trying to achieve this through the registry key:
HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*
but this returned more info than i need like updates installed. So i searched for another way and I found that the wmi class Win32_product
contains all installed apps but after trying with this y have found that the info that recolects is incorrect
¿why there are some apps like google chrome, free proxy, dell system diagnostics, that does not appear when querying the class?
In this link is the answer for this question
With powershell get exactly the same application list as in Add/Remove programms
¡there is a way to accurately get all installed applications in windows via powershell or command line?