Sentinel One AV Install Help

jake_redden
New Contributor

How do I deploy Sentinel One through jamf when it requires a general site token during the registration part of the installation. I want to be able to push it out to multiple macs that have already been enrolled in JAMF.

4 REPLIES 4

lawrence_stegal
New Contributor III

Use the Files and Process portion for the policy with this command

sentinelctl set registration-token -- tokenID

It will apply the token after the install.

Neil_Kitt
New Contributor III

I know this is a few months old but I was hoping someone could elaborate a little on the process. I get setting the command in the Files and Process but where does the actual token need to be stored for it to reference from the command?

Alternatively, does anyone have a script that could be ran after the fact to link the token to the clients? It seems I have quite a few Macs that my SentinelOne Admin is saying isn't associated to our company token :s

whitebird89
New Contributor

I got it to work by having Jamf cache the PKG installer and running the following script after:

#!/bin/bash

sudo echo "SITE TOKEN" > /Library/Application Support/JAMF/Waiting Room/com.sentinelone.registration-token

sudo /usr/sbin/installer -pkg /Library/Application Support/JAMF/Waiting Room/SentinelAgent_macos_v3_0_4_2657.pkg -target /

Neil_Kitt
New Contributor III

Thank you!