Get Ivanti Application Control Config Version

Displays the currently installed Ivanti Application Control configuration.
Requires AC 10.1 FR1 or higher.
Version 1.2.5
Created on 2018-03-26
Modified on 2018-05-13
Created by Landon Winburn
Downloads: 42

The Script Copy Script Copied to clipboard
strComputer = "."
Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colSoftware = objWMIService.ExecQuery ("Select * from Win32_Product WHERE Name LIKE 'Ivanti Application Control Configuration%'")
For Each objSoftware in colSoftware
  Config = Replace(objSoftware.Caption, "Ivanti Application Control Configuration ", "")
  Wscript.Echo Config
Next