View difference between Paste ID: pXrjcVi2 and 6SzLazWB
SHOW: | | - or go back to the newest paste.
1
BROWSER="chrome"
2-
UUID=$(defaults read /Library/Preferences/io.kandji.Kandji.plist ComputerURL | awk -F'/' '{print $5 }')
2+
UUID=$(system_profiler SPHardwareDataType | awk '/UUID/ { print $3; }')
3
4
# add your org_token in the below line replacing <org_token> with quotes ""
5
# get your org_token from the customer success manager
6-
ORG_TOKEN="61aef37d05753f0033ed2278"
6+
7
# ORG_TOKEN=<org_token> #"61aef37d05753f0033ed2278"
8-
TYPE="kandji"
8+
9
TYPE="jamf"
10
11
open -a Google\ Chrome 'https://zluri-static-page.vercel.app/static.html'\?browser="$BROWSER"\&UUID="$UUID"\&org_token="$ORG_TOKEN"\&mdm_type="$TYPE"
12
13
exit 0