Delete group
Description
Section titled “Description”Deletes a CapaInstaller group.
Syntax
Section titled “Syntax”DeleteGroup(Byval GroupName as String, Byval GroupType as String, Byval UnitType as String) as Boolean
Parameters
Section titled “Parameters”GroupName (String)
The name of the group
GroupType (String)
The type of the group. Valid values are “Dynamic_ADSI”, “Calendar”, “Department”, “Dynamic_SQL”, “Reinstall”, “Security” and “Static”
UnitType (String)
The type of the elements in the group. This can be either “Computer” or “User”
Return value
Section titled “Return value”Boolean. Returns true if the group is deleted, otherwise false
Example
Section titled “Example”VBScript
Set oCMS = CreateObject("CapaInstaller.SDK")wscript.echo oCMS.SetDefaultManagementPoint("1")wscript.echo oCMS.DeleteGroup("Jylland","Static","Computer")