# Get dll version

> Returns the version number of the CapaInstaller.SDK dll file.

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

## Description

Returns the version of the CapaInstaller.SDK dll file.

## Syntax

GetDllVersion() As String

## Parameters

*None*

## Return value

String. Returns a  string containing the version number of the CapaInstaller.SDK dll file

## Example

**VBScript**

```vb
Set oCMS = CreateObject("CapaInstaller.SDK")
wscript.echo "CapaInstaller.SDK Version: " & oCMS.GetDLLVersion()
 
```

The example above will return something like this: CapaInstaller.SDK Version: 4.1.3012.0
