Skip to content
/ qz.sh Public

QZ Tray scripted online installer

License

Notifications You must be signed in to change notification settings

qzind/qz.sh

Folders and files

NameName
Last commit message
Last commit date

Latest commit

84abe78 · Jul 19, 2023

History

40 Commits
Apr 18, 2022
Apr 18, 2022
Jan 19, 2023
Apr 18, 2022
Jan 19, 2023
Jul 19, 2023

Repository files navigation

qz.sh, pwsh.sh

QZ Tray online scripted installer

Screen Shot 2022-04-19 at 1 30 32 PM

MacOS

# Download and install the latest stable release of QZ Tray
curl qz.sh |bash

Linux

# Download and install the latest stable release of QZ Tray
wget -O - qz.sh |bash

Windows

# Download and install the latest stable release of QZ Tray
irm pwsh.sh | iex
Click to expand what to do if you recieve a security error
# Optional: Needed to run a remote script the first time
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser

Advanced

Additional parameters can be provided to specify beta or an exact tagged release.

Curl

curl qz.sh |bash -s -- "beta"   # latest beta release
curl qz.sh |bash -s -- "2.2.1"  # tagged "v2.2.1" release

Wget

wget -O - qz.sh |bash -s -- "beta"   # latest beta release
wget -O - qz.sh |bash -s -- "2.2.1"  # tagged "v2.2.1" release

PowerShell

& ([scriptblock]::Create((irm pwsh.sh))) beta   # latest beta release
& ([scriptblock]::Create((irm pwsh.sh))) 2.2.1  # tagged "v2.2.1" release