# Get unit package status

> Gets the status from a unit package relation.

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

## Description

Gets the status from a unit package relation.

## Syntax

GetUnitPackageStatus(Byval UnitName as String, Byval UnitType as String, Byval PackageName as String, Byval PackageVersion as String, Byval PackageType as String) as String

## Parameters

***UnitName (String)***

The name of the unit

***UnitType (String)***

Type of Unit

- "Computer"
- "User"

***PackageName (String)***

The name of the package

***PackageVersion (String)***

The package version

***PackageType (String)***

- "1" (Computer)
- "2" (User)

## Return value

String. The function returns the status of the the package in relation to the unit, I.e. 'Installed'.

## Example

**VBScript**

```vb
Set oCMS = CreateObject("CapaInstaller.SDK") 
Set aUnit = CreateObject("System.Collections.ArrayList") 
wscript.echo oCMS.GetUnitPackageStatus("Klient","Computer","HWIventory","v4.1","1")
```
