# Remove unit from reinstall

> Removes a unit from reinstall without removing it from reinstall groups.

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

## Description

Removes a Unit from reinstall. Does NOT remove the unit from any reinstall groups.

## Syntax

RemoveUnitFromReinstall(Byval ComputerName as String) as Boolean

## Parameters

***ComputerName (String)***

The name of the computer

## Return value

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

## Example

**VBScript**

```vb
Set oCMS = CreateObject("CapaInstaller.SDK") 
wscript.echo oCMS.SetInstanceManagementPoint("1") 
wscript.echo oCMS.RemoveUnitFromReinstall("Klient") 
```
