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
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'") }