Rename unit
Description
Section titled “Description”Renames a unit
Syntax
Section titled “Syntax”RenameUnit(Byval CurrentUnitName As String, Byval UnitType as String, Byval NewUnitName as String) as Boolean
Parameters
Section titled “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
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.RenameUnit("Klient","Computer","KlientNew")