I'm a bit confused on how Jamf Notify needs to be set up.
I get the notify screens after enrollment but I'm getting black out screen for 30 seconds afterwards.
I've looked here But I'm not sure I'm implementing it correctly. I do see a notify screen but I'm unclear which of the below are making that happen.
Q: What's the most basic form of Notify with the NotifyLogStyle key-value set to jamf ?
Q: What is the minimum I need to get Notify to work?
Currently I have
- Authchanger (see below).
- Basic notify script in package(copied the from jamf docs did not change this at all).
- Script path in login script.
- NotifyLogStyle key-value set to jamf (in login profile)
- script args are crrently not set in the login profile. Do they have to be?
Not sure where the ScriptArgs should go (login profile?) what they should be set to and what they actually do.
- I'm using Azure but I don't have a OIDCIDTokenPath set
recap of set up:
I've added a basic notify script to my login package that i copied from the Jamf doc here.
ScriptPath in login config is copied from the location of the above script.
<key>ScriptPath</key> <string>/usr/local/Jamf Connect/Jamf-Connect-Notify-Script.sh</string>
Authchanger scooped to all and a payload of the below:
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Arguments</key> <array> <string>-reset</string> <string>-JamfConnect</string> <string>-Notify</string> </array> </dict> </plist>
ScriptArgs - Not sure what these should be set to. THe documentation shows this:
<key>ScriptArgs</key>
<array>
<string>-v</string>
<string>-user</string>
</array>