Basic Notify setup with Jamf connect
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 10-18-2023 07:02 AM
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>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 10-19-2023 06:28 PM
So here is some basic steps to achieve this.
1. Install Jamf Connect and enable Notify via config profile or script.
2. I like to have the script be a local script that calls a script living in Jamf Pro via custom trigger.
3. This is my script I use for notify
https://github.com/kylejericson/JAMF/blob/master/Scripts/JamfConnectNotifyStart.sh
