Ad Widget

Collapse

List all programs installed in windows machine

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • fabregasf_CEC
    Junior Member
    • Sep 2020
    • 10

    #1

    List all programs installed in windows machine

    Friends, all right? I have a IR Structure and I need to monitor whats programs is installed in Windows machines. The default key system.sw.packages does not work in my local network, returning none/blank. I searched in foruns, the people said it's difficult to get the list os packages in windows.

    Were anyone faced this issue? Thanks
  • Atsushi
    Senior Member
    • Aug 2013
    • 2028

    #2
    You cannot use system.sw.package on Windows platform.


    If you want to get a list of the applications installed on Windows, you should use PowerShell etc. For example, you can get a list of software by executing the following command with PowerShell.

    Code:
    PS C:\> Get-WmiObject Win32_Product | Select-Object Name,Vendor,Version,Caption
    However, it is difficult to call it directly from Zabbix with UserParameter because the acquisition process takes time, so it may be better to output it to a file periodically and acquire the output file with Zabbix.

    Comment

    Working...