GetUnitFolder
Description
Section titled “Description”Gets the folder for a unit
Syntax
Section titled “Syntax”GetUnitFolder(Byval UnitName as String, Byval UnitType as String) as String
Parameters
Section titled “Parameters”UnitName (String)
The name of the unit
UnitType (String)
Type of Unit
- “Computer”
- “User”
Return Value
Section titled “Return Value”String. If the unit is placed in a folder, its folder structure will be returned in the format: Folder1\Folder2. If it is not located in a folder an empty string will be returned.
Example
Section titled “Example”VBScript
Set oCMS = CreateObject("CapaInstaller.SDK")wscript.echo oCMS.SetDefaultManagementPoint("1")Set aUnit = oCMS.GetUnitGroups("Klient","Computer")wscript.echo oCMS.GetUnitFolder("Klient","Computer")