# Get WSUS points

> Gets a list of WSUS Points.

Source: https://docs.capaone.com/capainstaller/sdk-capainstaller-software-development-kit-functions/wsus-functions/get-wsus-points/  
Product: CapaInstaller — a separate CapaSystems product; do not apply this page to any other.

## Description

Gets a list of WSUS Points.

## Syntax

GetWSUSPoints() as ArrayList

## Parameters

None

## Return value

The function returns an array of WSUS points. Each element in the array is a joined line with the character defined with [Set splitter](/capainstaller/sdk-capainstaller-software-development-kit-functions/container-functions/set-splitter/). 

- point.ID
- point.Name
- point.GUID

## Example

**VBScript**

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