Skip to content

Rename unit

Renames a unit

RenameUnit(Byval CurrentUnitName As String, Byval UnitType as String, Byval NewUnitName as String) as Boolean

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.

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

VBScript

Set oCMS = CreateObject("CapaInstaller.SDK")
wscript.echo oCMS.SetDefaultManagementPoint("1")
wscript.echo oCMS.RenameUnit("Klient","Computer","KlientNew")