Versions Compared

Key

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

...

Gets a list of WSUS Groups.

 


Syntax

GetWSUSGroups(ByVal pointID As Integer) As ArrayList

...

The function returns an array of WSUS Groups. Each element in the array is a joined line with the character defined with Set splitter

  • group.ID
  • group.Name
  • group.GUID

...


Example 

Code Block
languagevb
themeEclipselanguagevb
titleVBScript
Set oCMS = CreateObject("CapaInstaller.SDK") 
Set aUnit = CreateObject("System.Collections.ArrayList") 
Set aUnit =  oCMS.GetWSUSGroups(1) 
for each item in aUnit 
  wscript.echo item 
next 

...