Versions Compared

Key

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

...

Adds the specified unit to the specified one or more static groupgroups

For Business Unit support click here

Syntax

(blue star) CMS_AddComputerToStaticGroup(sUnit, sGroup) as Boolean

(blue star) [bool]CMS_AddComputerToStaticGroup -group <string>

Parameters

sUnit (String)

Unit name

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.

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

Example

(blue star) VBScript
Code Block
vb
languagevbvbnet
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'")
} 

Scripting Guidelines

Related functions

CMS_RemoveComputerFromStaticGroup