# Remove Package From BusinessUnit

> Unlinks a package from a Business Unit.

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

## Description

Unlinks a package to a business unit

## Syntax

Public Function RemovePackageFromBusinessUnit(ByVal **packageName** As String, ByVal **packageVersion** As String, ByVal **packageType** As String, ByVal **businessUnitName** As String) As Boolean

## Parameters

***PackageName (String)***

The name of the package

***PackageVersion***

The version of the package, i.e.: "v1.0"

***PackageType (String)***

Type of package

- "Computer"
- "User"

***BusinessUnitName (String)***

The name of the business unit

## Return value

The function returns true if successful.

## Example

**VBScript**

|                                                                                                                                                                                                                                            |
|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `Set` `oCMS = CreateObject(``"CapaInstaller.SDK"``)` `wscript.echo oCMS.SetInstanceManagementPoint(``"1"``)` `wscript.echo oCMS.RemovePackageFromBusinessUnit(``"Mozilla Firefox 76.0 EN"``,` `"v1.0"``,` `"Computer", "HQ Skanderborg"``)` |
