# MSI Installation Guide

This document summarizes common command-line usage for the PACO RocketBar MSI installer.

## Recommended Install Command

Use the following command as a baseline for a silent install with full feature set and verbose logging:

```
msiexec /i "PACO RocketBar (4).msi" /qn ADDLOCAL=ALL /l*v install.log
```

## MSI Parameters

The installer supports standard MSI options. The most relevant are listed below.

### Feature Selection

`ADDLOCAL=ALL` installs all features (application, auto-launch, auto-update). The feature list is:

- `MainApplication`
- `AutoLaunch`
- `AutoUpdate`

### UI Level

- `/qb` installs with a minimal UI.
- `/qn` installs silently (no UI).

### Install Location

When using `/qn`, specify the install directory explicitly. Supported properties include:

- `INSTALLDIR`
- `INSTALLFOLDER`
- `TARGETDIR`
- `INSTALLPATH`

Example:

```
msiexec /i "PACO RocketBar (4).msi" /qn ADDLOCAL=ALL INSTALLDIR="C:\\Program Files\\PACO RocketBar" /l*v install.log
```