Description
Adds the specified computer to the specified reinstall group
For Business Unit support click here
Syntax
CMS_AddComputerToReinstallGroup(sUnit, sGroup) as Boolean
[bool]CMS_AddComputerToReinstallGroup -group <string>
Parameters
sUnit (String)
Unit name
sGroup (String)
Group name
Example
VBScript
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
If bStatus Then bStatus = CMS_AddComputerToReinstallGroup(gsUnitName, "CapaInstaller") |
Powershell
Code Block | ||
---|---|---|
| ||
if (CMS_AddComputerToReinstallGroup -group 'reinst') {
$cs.Job_WriteLog("Added", "Computer added to reinstall group: 'reinst'")
} |