Skip to content

Get WSUS points

Gets a list of WSUS Points.

GetWSUSPoints() as ArrayList

None

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

  • point.ID
  • point.Name
  • point.GUID

VBScript

Set oCMS = CreateObject("CapaInstaller.SDK")
Set aUnit = CreateObject("System.Collections.ArrayList")
Set aUnit = oCMS.GetWSUSPoints()
for each item in aUnit
wscript.echo item
next