Skip to content

Deployment

Tres Finocchiaro edited this page Jan 18, 2016 · 26 revisions

Compatibility

  • ✅ 2.0 | ✅ 1.9 | ...

Objective

Perform a silent, unattended or slipstream installation of QZ Tray, such as in a corporate environment.

Steps

Windows

We use NSIS (Nullsoft Scriptable Installer System) for Windows.

  • Install silently to the default location (run Command Prompt as Administrator)

    start /wait "" qz-tray-1.9.4.exe /S
  • Install silently to a non-standard location (run Command Prompt as Administrator)

    Note: This is currently broken, /D is ignored. See #132 for more information.

    start /wait "" qz-tray-1.9.x.exe /S /D=C:\Program Files\QZ Tray

Linux

We use Makeself for Linux.

  • Install silently to the default location

    sudo qz-tray-1.9.x.run -- -y

Mac

We can use the installer command on Mac to silently install QZ Tray via the command line. Type (or click here): man installer on the command line for more examples.

  • Install silently to the default location

    sudo installer -pkg qz-tray-1.9.x.pkg -target /
  • Install silently to a non-standard location

    sudo installer -pkg qz-tray-1.9.x.pkg -target /Applications/QZ Tray/
Clone this wiki locally