# Get management point

> Returns a specific management point by its ID.

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

## Description

Get a specific management point.

## Syntax

GetManagementPoint(Byval CmpId as Integer) as ArrayList

## Parameters

***CmpId (Integer)***

The ID of the management point

## Return value

The function returns an array of management points. Each management point (cmp) 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/). 

- cmp.Id
- cmp.Name
- cmp.Description
- cmp.Drive
- cmp.GUID
- cmp.LocalFolder
- cmp.Server
- cmp.Share
- cmp.Parent.GUID

## Example

**VBScript**

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