#
sudo jamf checkJSSConnection
if [ $? -ne 0 ];then
(/usr/bin/osascript -e 'display dialog "未管控或本地管控!" buttons {"OK"} default button "OK"')
exit 0 ;
fi
sudo jamf checkJSSConnection | grep "aaaa.bbb-ict.com"
if [ $? -eq 0 ];then
(/usr/bin/osascript -e 'display dialog "新版嘉善管控!" buttons {"OK"} default button "OK"')
exit 0 ;
fi
sudo jamf checkJSSConnection | grep "dddd.bbbb-ict.com"
if [ $? -eq 0 ];then
(/usr/bin/osascript -e 'display dialog "旧版嘉善管控!" buttons {"OK"} default button "OK"')
exit 0 ;
fi