# Rebuild kit on Management Point

> Rebuilds the CapaInstaller.kit file on all management servers in a management point.

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

## Description

Rebuilds CapaInstaller.kit file on all Management Servers in the given Management Point. The function sets an action for the assigned Replicator to perform

## Syntax

Public Function RebuildKitFileOnPoint(ByVal packageName As String, ByVal packageVersion As String, ByVal packageType As String, ByVal pointID As Integer) As Boolean

## Parameters

***PackageName (String)***

The name of the package.

***PackageVersion (String)***

The package Version.

***PackageType (String)***

The package type;

- 1 (Computer)
- 2 (User)

***PointID(Integer)***

The Point ID

## Return value

Boolean. The function returns True if successful, otherwise false.

## Example 1

**VBScript**

```vb
Set oCMS = CreateObject("CapaInstaller.SDK") 
wscript.echo oCMS.RebuildKitFileOnPoint("Acrobat Reader","v8.0","1",2) 
 
```
