Silent Installation

Versions Starting from 2021

Installation

All our installers for Windows are implemented using the Qt Installer Framework of version 4. Below is the most typical example of its usage for Wrap installer:

Faceform_Wrap_2021.01.1_Setup.exe install --accept-licenses --confirm-command

and its shorthand:

Faceform_Wrap_2021.01.1_Setup.exe install --al -c

Deinstallation

Every installer creates an uninstaller executable in the installation directory. It can be run in both GUI and console manner. To run it in the silent console mode one can type the path to the executable with the following arguments: purge command and –confirm-command or just -c option:

"C\Program Files\Faceform\Wrap 2021.01.1\Uninstall_Wrap.exe" purge -c

Full list of installation options is available on the QtIFW official documentation page. Since our installers are offline-only, online installation features are not used.

Versions Before 2021

Installation

All our installers for Windows are implemented using the Qt Installer Framework of version 3. Unfortunately, this version does not have true headless silent installation mode. But it allows to pass a script that will automate the user’s actions. However, this still requires a GUI session. It can be called this way:

Faceform_Wrap_2020.12.2_Setup.exe --script wrap_auto_install.qs

Here one can find auto install scripts:

for Wrap, Wrap4D, Track, Node, and Rush:

wrap_auto_install.qs

for ZWrap:

zwrap_auto_install.qs

Deinstallation

Following the same scheme as with installation, one can pass auto uninstall script to the uninstaller executable. Script is located in the scripts subdirectory relative to the installation directory. Below is the usage example:

cd "C\Program Files\Faceform\Wrap 2020.12.2\"
Uninstall_Wrap.exe --script scripts\auto_uninstall.qs