Skip to content

Add package to group

Adds a package to a group.

AddPackageToGroup(Byval packageName as String, Byval packageVersion as String, Byval packageType as String, Byval groupName as String, Byval groupType as String) as Boolean

PackageName (String)

The name of the package.

PackageVersion (String)

The package Version.

PackageType (String)

The package type;

  • 1 (Computer)
  • 2 (User)

GroupName (String)

The name of the group that the package should belong to

GroupType (String)

The type of group

  • “Dynamic_ADSI”
  • “Calendar”
  • “Department”
  • “Dynamic_SQL”
  • “Reinstall”
  • “Security” “Static”

Boolean. The function returns True if successful, otherwise false.

VBScript

Set oCMS = CreateObject("CapaInstaller.SDK")
wscript.echo oCMS.SetDefaultManagementPoint("1")
wscript.echo oCMS.AddPackageToGroup("Acrobat Reader","v8.0","1","Test","Static")