# Get OS servers

> Returns a list of OS servers, including sub servers, for an OS point.

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

## Description

Returns a list of OS servers including sub servers

## Syntax

GetOSServers(ByVal OSPointID as Integer) as ArrayList

## Parameters

***OSPointID (Integer)***

OS Point ID

## Return value

The function returns an array of OS servers. 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/).

- server.ID
- server.Name
- server.IP
- server.Servername
- server.Sharename
- server.UncPath

## Example

**VBScript**

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