This guide is only necessary if the Signitic Add-in deployment is not an option for you.

If you want to deploy the Signitic agent on your RDS farm, we provide an .exe file and a script to put at the logon of the sessions:

REM Variables
set apiKey=0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ
set signiticPath=C:\Users\%username%\AppData\Roaming\Signitic
set url=https://api.signitic.app/desktop/%username%
set header=x-api-key: %apiKey%
set appName=signitic-setup-4.0.0.exe

if exist "%signiticPath%\Signitic.exe" (
Echo Config Ok %username% >> "%signiticPath%\install.log"
) else (
Echo Install started >> "%signiticPath%\install.log"
REM start /D %signiticPath%%appName%

start /D signitic-setup-4.0.0.exe
mkdir %signiticPath%
curl --location --request GET %url% -H "%header%" > "%signiticPath%\config.json"
)
Did this answer your question?