Posted on 04-04-2016 09:16 AM
Does anyone have an EA that can determine what the JSS URL is set to on each machine?
Currently transitioning URLs and just realized that I have no idea how many computers are pointing to the new one and how many have yet to get the update.
Solved! Go to Solution.
Posted on 04-04-2016 09:36 AM
Its stored in the com.jamfsoftware.jamf.plist
on each Mac:
#!/bin/sh
JSSURL=$(defaults read /Library/Preferences/com.jamfsoftware.jamf.plist jss_url)
echo "<result>$JSSURL</result>"
Posted on 04-04-2016 09:30 AM
+1 Very interested in this as we are pending transition!
Posted on 04-04-2016 09:36 AM
Its stored in the com.jamfsoftware.jamf.plist
on each Mac:
#!/bin/sh
JSSURL=$(defaults read /Library/Preferences/com.jamfsoftware.jamf.plist jss_url)
echo "<result>$JSSURL</result>"
Posted on 04-04-2016 09:38 AM
You can use the "jamf checkJSSConnection" command to grab the information.
Posted on 04-04-2016 02:37 PM
Even if you had an EA to collect that info, wouldn't it always report to the same JSS it is enrolled with? If it's still communicating with the old JSS it will report the URL for the old JSS to the old JSS (and likewise for the new JSS).