<< Back to Script Library

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: 2018-03-26
Modified: 2018-05-13
Creator: Landon Winburn
Downloads: 41
Tags:
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