Hey All
I am looking to have a policy get called while I have a JamfHelper window up doing a 12minute countdown.
This is all happening once a machine is enrolled and keeps the techs from clicking ahead before the installs of all the software are complete. So far I'm able to get the countdown timer going using the enrollment complete trigger, but unfortunately all the other enrollment complete triggers are waiting for the jamf helper countdown to complete before they run.
#!/bin/sh
/Library/Application\\ Support/JAMF/bin/jamfHelper.app/Contents/MacOS/jamfHelper -windowType utility -lockHUD -icon /Library/Desktop\\ Pictures/PPSLogo.jpg -title "Tech Office" -heading "Please wait for install to complete..." -description "Installing all needed software..." -countdown -timeout 720 -alignCountdown right
I'm wondering if I just add a
&
to the end of a policy trigger before the caffeinate command, will that then run the install policy in the background?
Like "sudo jamf policy -trigger creativecloud &"
I always hate asking/bothering, but this seems like a @mm2270 style question.
The end result is I just want the jamf helper timer to pop, while the adobe creative cloud installs, but they currently are waiting for each other to finish before running.
Im also seeing some issues with the machine/screen going to sleep during this process so I was also trying to call the caffinate process. "caffeinate -i -s -d -t 900 &" (Again this all happens right after enrollment complete during the first few clicks) before the login screen shows, usually during the enable location services screen).
Thanks for any help you can provide.