CMS_AddComputerToPowerSchemeGroup
Description
Adds the specified computer to the specified power scheme group
Syntax
CMS_AddComputerToPowerSchemeGroup(sUnit, sGroup) as Boolean
[bool]CMS_AddComputerToPowerSchemeGroup -group <string>
Parameters
sUnit (String)
Unit name
sGroup (String)
Group name
Return value
Boolean, TRUE if function completed successfully.
Boolean, TRUE if function completed successfully.Â
Example
VBScript
If bStatus Then bStatus = CMS_AddComputerToPowerSchemeGroup(gsUnitName, "CapaInstaller")
PowerShell
if (CMS_AddComputerToPowerSchemeGroup -group 'CapaInstaller') {
$cs.Job_WriteLog("Added", "Computer added to power scheme group: 'CapaInstaller'")
}