Skip to content

Add unit to folder

Adds unit to a folder.

AddUnitToFolder(Byval UnitName as String, Byval UnitType as String, Byval FolderStructure as String, Optional Byval CreateFolder as Boolean = False) as Boolean

UnitName (String)

The name of the unit, or the uuid of the unit

UnitType (String)

Type of Unit

  • “Computer”
  • “User”

FolderStructure (String)

The folder structure to which the unit should be added

CreateFolder (Boolean)

An optional parameter stating wether the folder should be created if it does not exist. Default value is; False

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

VBScript

Set oCMS = CreateObject("CapaInstaller.SDK")
wscript.echo oCMS.SetDefaultManagementPoint("1")
wscript.echo oCMS.AddUnitToFolder("Klient","Computer","Upgrade\cms4",true)