Posted on 07-18-2016 08:23 AM
Our current thin imaging workflow involves our technicians logging into a new Mac, setting up a local Administrator account and then running the Quickadd.pkg from a USB stick. We then have a number of policies set to run at enrolment time.
Is there a way I can set some kind of 'Enrolment in progress, do not power off' type screensaver/desktop background to run whilst the enrolment policies are applying? I'd like our technicians to know exactly where they are in the on-boarding process.
Solved! Go to Solution.
Posted on 07-18-2016 03:50 PM
You can use the JAMFhelper to do this.
Open terminal and type:
/Library/Application Support/JAMF/bin/jamfHelper.app/Contents/MacOS/jamfHelper -help
This will give you the all the syntax you need to create your custom screen.
For example, I have used the following in the past to install software:
/Library/Application Support/JAMF/bin/jamfHelper.app/Contents/MacOS/jamfHelper -windowType fs -heading "Application Title currently being installed" -description "Once installed, the latest updates will be applied. This process can take up to 15 minutes to complete.
If you see this message for more than 15 minutes, please contact the Service Desk on ext xxxx.
Do not turn off your computer during this time.
Please Note: Application Title will also be removed." -icon /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/AlertCautionIcon.icns &
Posted on 07-18-2016 03:50 PM
You can use the JAMFhelper to do this.
Open terminal and type:
/Library/Application Support/JAMF/bin/jamfHelper.app/Contents/MacOS/jamfHelper -help
This will give you the all the syntax you need to create your custom screen.
For example, I have used the following in the past to install software:
/Library/Application Support/JAMF/bin/jamfHelper.app/Contents/MacOS/jamfHelper -windowType fs -heading "Application Title currently being installed" -description "Once installed, the latest updates will be applied. This process can take up to 15 minutes to complete.
If you see this message for more than 15 minutes, please contact the Service Desk on ext xxxx.
Do not turn off your computer during this time.
Please Note: Application Title will also be removed." -icon /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/AlertCautionIcon.icns &
Posted on 07-21-2016 06:48 AM
This is just what we were after - thank you!
Posted on 07-21-2016 03:17 PM
@ianmb No probs! Glad it helped :)