Get unit package status
Description
Section titled “Description”Gets the status from a unit package relation.
Syntax
Section titled “Syntax”GetUnitPackageStatus(Byval UnitName as String, Byval UnitType as String, Byval PackageName as String, Byval PackageVersion as String, Byval PackageType as String) as String
Parameters
Section titled “Parameters”UnitName (String)
The name of the unit
UnitType (String)
Type of Unit
- “Computer”
- “User”
PackageName (String)
The name of the package
PackageVersion (String)
The package version
PackageType (String)
- “1” (Computer)
- “2” (User)
Return Value
Section titled “Return Value”String. The function returns the status of the the package in relation to the unit, I.e. ‘Installed’.
Example
Section titled “Example”VBScript
Set oCMS = CreateObject("CapaInstaller.SDK")Set aUnit = CreateObject("System.Collections.ArrayList")wscript.echo oCMS.GetUnitPackageStatus("Klient","Computer","HWIventory","v4.1","1")