Add package to group
Description
Section titled “Description”Adds a package to a group.
Syntax
Section titled “Syntax”AddPackageToGroup(Byval packageName as String, Byval packageVersion as String, Byval packageType as String, Byval groupName as String, Byval groupType as String) as Boolean
Parameters
Section titled “Parameters”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”
Return value
Section titled “Return value”Boolean. The function returns True if successful, otherwise false.
Example
Section titled “Example”VBScript
Set oCMS = CreateObject("CapaInstaller.SDK")wscript.echo oCMS.SetDefaultManagementPoint("1")wscript.echo oCMS.AddPackageToGroup("Acrobat Reader","v8.0","1","Test","Static")