# Get Package Description

> Gets the description of a package.

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

## Description

Gets the package description

## Syntax

GetPackageDescription(ByVal name As String, ByVal version As String, ByVal Type As String) As String

## Parameters

***PackageName (String)***

The name of the package.

***PackageVersion (String)***

The package Version.

***PackageType (String)***

The package type;

- 1 (Computer)
- 2 (User)

## Return value

String. The function returns the description for the unit.

## Example

**VBScript**

```vb
Set oCMS = CreateObject("CapaInstaller.SDK") 
wscript.echo oCMS.SetInstanceManagementPoint("1") 
wscript.echo oCMS.GetPackageDescription("Winrar","v3.0","1") 
```
