...
Adds the specified unit to the specified one or more static groupgroups
For Business Unit support click here
...
sGroup (String)
Group name.
It is possible to state more groups by using comma (,) as delimiter
Return value
Boolean, TRUE if function completed successfully.
...
Code Block | ||
---|---|---|
| ||
If bStatus Then bStatus = CMS_AddComputerToStaticGroup(gsUnitName, "CapaInstaller") If bStatus Then bStatus = CMS_AddComputerToStaticGroup(gsUnitName, "Zone1,Zone2") |
PowerShell
Code Block | ||
---|---|---|
| ||
if (CMS_AddComputerToStaticGroup -group 'static1') { $cs.Job_WriteLog("Added", "Computer added to static group: 'static1'") } |
...