Rename unit
Description
Renames a unit
Syntax
RenameUnit(Byval CurrentUnitName As String, Byval UnitType as String, Byval NewUnitName as String) as Boolean
Parameters
CurrentUnitName (String)
The current name of the unit
UnitType (String)
Type of Unit
- "Computer"
- "User"
NewUnitName (String)
The new name that will be assigned to the unit. Please note that the new name should be nonexistent.
Return Value
Boolean. The function returns True if successful, otherwise false.
Example
VBScript
Set oCMS = CreateObject("CapaInstaller.SDK") wscript.echo oCMS.SetDefaultManagementPoint("1") wscript.echo oCMS.RenameUnit("Klient","Computer","KlientNew")