Mass Deployment

Gaea can be deployed to a large number of workstations in multiple ways.

Unattended Installation

The easiest way to install and activate Gaea is to run the following script / batch file. Replace the path and activation key as required.

The %ACTIVATION_KEY% can either be a License Key such as AAA-BBBB-CCCC-DDDD or a fully qualified path to a XYZ1234.lic offline license file.

@echo off
SET INSTALLER=Gaea-2.0.3.0.exe
SET ACTIVATION_KEY=your_activation_key_here

:: Install Gaea silently
"%~dp0%INSTALLER%" /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-

:: Wait for the installation to finish
timeout /t 5 /nobreak > NUL

:: Change directory to the installation path (Adjust the path as necessary)
cd "C:\Program Files\QuadSpinner\Gaea 2"

:: Activate Gaea
Gaea.exe -activate %ACTIVATION_KEY%

echo Installation and activation completed.
pause

7-Zip based Deployment

We provide 7z versions of each release so you can create your own installer if needed, or create direct deployments.

Ensure you have 7-zip installed and added to PATH.

Zip File

Alternatively, if 7-zip is not acceptable in your network environment, you can convert it to a zip file and deploy it with this alternate script:

Last updated