Get packages on management server

Description

Gets a list of packages on the specified Management Server.


Syntax

GetPackagesOnManagementServer(Byval ServerName as String, Optional Byval PackageType as String = "") as ArrayList


Parameters

ServerName (String)

Management Server Name

PackageType (String)

Type of package

  • "Computer"
  • "User"

This parameter is optional, meaning that it is not required. If not stated, all packages are returned.


Return Value

The function returns an array of packages. Each package (p) in the array is a joined line with the character defined with Set splitter

  • p.Name
  • p.Version
  • p.Type
  • p.DisplayName
  • p.IsMandatory
  • p.ScheduleId
  • p.Description
  • p.GUID
  • p.ID
  • p.IsInteractive
  • p.DependendPackageID
  • p.IsInventoryPackage
  • p.CollectMode
  • p.Priority
  • p.ServerDeploy

Example

VBScript
Set oCMS = CreateObject("CapaInstaller.SDK") 
Set aUnit = CreateObject("System.Collections.ArrayList") 
wscript.echo oCMS.SetDefaultManagementPoint("1") 
Set aUnit =  oCMS.GetPackagesOnManagementServer("SRVOSLO2","Computer") 
for each item in aUnit 
  wscript.echo item 
next