Hello All,
At the end of the policy to be executed at enrollment, I display a dialog using jamfhelper in the background.
However, there is a phenomenon that the dialog is closed arbitrarily.
Is there a way to display the dialog in the background without closing the dialog in the policy executed at enrollment?
Supplement) When the applicable policy is executed from Self Service, a dialog is displayed in the background
The script displaying the dialog is below.
#!/bin/sh
JAMF_HELPER="/Library/Application Support/JAMF/bin/jamfHelper.app/Contents/MacOS/jamfHelper"
JAMF_ICONS_PATH="/Applications/Self Service.app/Contents/Resources/AppIcon.icns"
DIALOG_HEADING="Title"
DIALOG_DESCRIPTION="message"
"$JAMF_HELPER" -windowType utility -heading "$DIALOG_HEADING" -alignHeading center -button1 "OK" -defaultButton 1 -icon "$JAMF_ICONS_PATH" -description "$DIALOG_DESCRIPTION" &