# Get OS points

> Returns a list of OS points.

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

## Description

Gets a list of OS Points.

## Syntax

GetOSPoints() as ArrayList

## Parameters

None

## Return value

The function returns an array of OS 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.Description
- point.GUID
- point.FileBoot
- point.FileDriverMapping
- point.FileOSDGui
- point.FolderCommonFiles
- point.FolderDrivers
- point.FolderImages
- point.FolderOSD
- point.FolderMediaMaster
- point.FolderScripts
- point.FolderWinPE
- point.OSDVersion
- point.Servername
- point.Sharename
- point.UncPath

## Example

**VBScript**

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