Posted on 05-29-2019 03:16 PM
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.
Posted on 05-30-2019 06:27 AM
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.
Posted on 10-10-2019 08:22 AM
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
Posted on 10-10-2019 08:25 AM
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 /
Posted on 10-10-2019 08:55 AM
Thank you!