top of page

FILES

USE THE INSTALLATION COMMAND

WINDOWS

(New-Object System.Net.WebClient).DownloadFile("https://zinfandel.centrastage.net/csm/profile/downloadAgent/799f3657-f706-4e83-932b-73d17fc95df1", "$env:TEMP/AgentInstall.exe");start-process "$env:TEMP/AgentInstall.exe"

MACOS

curl -o Agent.zip "https://zinfandel.centrastage.net/csm/profile/downloadMacAgent/799f3657-f706-4e83-932b-73d17fc95df1";unzip Agent.zip;sudo installer -pkg "AgentSetup/CAG.pkg" -target /

LINUX

sudo wget -O setup.sh https://zinfandel.centrastage.net/csm/profile/downloadLinuxAgent/799f3657-f706-4e83-932b-73d17fc95df1 && sudo sh setup.sh

bottom of page