# MSI_InstallPackage

> Performs a silent install of the specified MSI-package.

Source: https://docs.capaone.com/capainstaller/vb-scripting-library/msi-functions/msi-installpackage/  
Product: CapaInstaller — a separate CapaSystems product; do not apply this page to any other.

### Description

Performs a silent install of the specified MSI-package

### Syntax

MSI_InstallPackage(sMSIFile) As Boolean

### Parameters

#### sMSIFile (String)

Path and filename of the MSI-package

### Example

**VBScript**

```vb
If bStatus Then bStatus = MSI_InstallPackage("C:\CapaInstalller.msi")
```

[Scripting Guidelines](/capainstaller/vb-scripting-library/scripting-guidelines/)

### Related functions

[MSI_UnInstallByFile](/capainstaller/vb-scripting-library/msi-functions/msi-uninstallbyfile/) [MSI_IsPackageInstalled](/capainstaller/vb-scripting-library/msi-functions/msi-ispackageinstalled/) [MSI_GetPackageStatus](/capainstaller/vb-scripting-library/msi-functions/msi-getpackagestatus/) [Constants](/capainstaller/vb-scripting-library/addendum/constants/) [Package Property](/capainstaller/vb-scripting-library/addendum/package-property/) [Variables](/capainstaller/vb-scripting-library/addendum/variables/)
