Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

sGroup (String)

Group name. It is possible to state more groups by using comma (,) as delimiter

Return value

(blue star) Boolean, TRUE if function completed successfully.

...

Code Block
languagevbnet
If bStatus Then bStatus = CMS_AddComputerToStaticGroup(gsUnitName, "CapaInstaller")
If bStatus Then bStatus = CMS_AddComputerToStaticGroup(gsUnitName, "Zone1,Zone2")
(blue star) PowerShell
Code Block
languagepowershell
if (CMS_AddComputerToStaticGroup -group 'static1') {
  $cs.Job_WriteLog("Added", "Computer added to static group: 'static1'")
} 

...