# Set instance management point

> Sets an instance Management Point used by other SDK functions that require one.

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

## Description

Sets an instance Management Point to use with other SDK functions that require a Management Point within the instance of the SDK.

## Syntax

SetInstanceManagementPoint(Byval ManagementPointID as String) as Boolean

## Parameters

*ManagementPointID (String)*

Id of the managementpoint to set

## Return value

Boolean. Returns true if the management point is set. Otherwise false.

## Example

**VBScript**

```vb
Dim bStatus 
Dim oCMS 
  
Set oCMS = CreateObject("CapaInstaller.SDK")
bStatus = oCMS.SetInstanceManagementPoint("1")
```

## Related functions

GetManagementPoints. The management point Id can be retrieved with the function [Get management points](/capainstaller/sdk-capainstaller-software-development-kit-functions/system-sdk-functions/get-management-points/).
