Noah Talerman
Noah Talerman
Available in Fleet Premium
In Fleet, you can customize the out-of-the-box macOS Setup Assistant with Remote Management and Automated Device Enrollment (ADE) for end users:
Require end users to authenticate with your identity provider (IdP) and agree to an end user license agreement (EULA) before they can use their new Mac.
Customize the macOS Setup Assistant by choosing to show or hide specific panes.
Install a bootstrap package to gain full control over the setup experience by installing tools like Puppet, Munki, DEP notify, custom scripts, and more.
Install software (App Store apps, custom packages, and Fleet-maintained apps).
Run a script.
In addition to the customization above, Fleet automatically installs the fleetd agent during out-of-the-box macOS setup. This agent is responsible for reporting host vitals to Fleet and presenting Fleet Desktop to the end user.
macOS setup features require connecting Fleet to Apple Business Manager (ABM). Learn how here.
Using Fleet, you can require end users to authenticate with your identity provider (IdP) and agree to an end user license agreement (EULA) before they can use their new Mac.
To require end user authentication, first configure single sign-on (SSO). Next, enable end user authentication by heading to to Controls > Setup experience End user authentication or use Fleet's GitOps workflow.
If you've already configured SSO in Fleet, create a new SAML app in your IdP. In your new app, use https://<your_fleet_url>/api/v1/fleet/mdm/sso/callback
for the SSO URL.
In your IdP, make sure your end users' full names are set to one of the following attributes (depends on IdP): name
, displayname
, cn
, urn:oid:2.5.4.3
, or http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name
. Fleet will automatically populate and lock the macOS local account Full Name with any of these.
In your IdP, set Name ID to email. Fleet will trim this email and use it to populate and lock the macOS local account Account Name. For example, a "johndoe@example.com" email turn into a "johndoe" account name.
To require a EULA, in Fleet, head to Settings > Integrations > Automatic enrollment > End user license agreement (EULA) or use the Fleet API.
Fleet supports installing a bootstrap package on macOS hosts that automatically enroll to Fleet.
This enables installing tools like Puppet, Munki, or Chef for configuration management and/or running custom scripts and installing tools like DEP notify to customize the setup experience for your end users.
The following are examples of what some organizations deploy using a bootstrap package:
Munki client to install and keep software up to date on your Macs
Puppet agent to run custom scripts on your Macs
Custom scripts and several packages bundled into one bootstrap package using a tool like InstallApplications to install a base set of applications, set the Mac's background, and install the latest macOS update for the end user.
To add a bootstrap package to Fleet, we will do the following steps:
Whether you have to download or generate a package depends on what you want to deploy using your bootstrap package:
A single client or agent, like Munki or Puppet, can usually be downloaded from the tool's GitHub repository or website. For example, you can download Munki, the Munki client on their releases page on GitHub.
To deploy custom scripts, you need to generate a package. The munkipkg tool is a popular tool for generating packages.
Apple requires that your package is a distribution package. Verify that the package is a distribution package:
$ pkgutil --expand package.pkg expanded-package
$ ls expanded-package
If your package is a distribution package you should see a Distribution
file.
Distribution
file, run the following command to convert your package into a distribution package.$ productbuild --package package.pkg distrbution-package.pkg
Make sure your package is a .pkg
file.
To sign the package we need a valid Developer ID Installer certificate:
During step 3 in Apple's instructions, make sure you choose "Developer ID Installer." You'll need this kind of certificate to sign the package.
Confirm that certificate is installed on your Mac by opening the Keychain Access application. You should see your certificate in the Certificates tab.
$ productsign --sign "Developer ID Installer: Your name (Serial number)" /path/to/package.pkg /path/to/signed-package.pkg
You might be prompted to enter the password for your local account.
Confirm that your package is signed by running the following command:
$ pkgutil --check-signature /path/to/signed-package.pkg
In the output you should see that your package has a "signed" status.
Head to the Controls > Setup experience > Bootstrap package page.
Choose which team you want to add the bootstrap package to by selecting the desired team in the teams dropdown in the upper left corner.
Select Upload and choose your bootstrap package.
When an end user unboxes their new Mac, or starts up a freshly wiped Mac, they're presented with the macOS Setup Assistant. Here they see panes that allow them to configure accessibility, appearance, and more.
In Fleet, you can customize the macOS Setup Assistant by using an automatic enrollment profile.
To customize the macOS Setup Assistant, we will do the following steps:
Download Fleet's example automatic enrollment profile by navigating to the example here and clicking the download icon.
Open the automatic enrollment profile and replace the profile_name
key with your organization's name.
View the the list of macOS Setup Assistant properties (panes) here in Apple's Device Management documentation and choose which panes to hide from your end users.
In your automatic enrollment profile, edit the skip_setup_items
array so that it includes the panes you want to hide.
You can modify properties other than
skip_setup_items
. These are documented by Apple here.
Head to the Controls > Setup experience > Setup assistant page.
Choose which team you want to add the profile to by selecting the desired team in the teams dropdown in the upper left corner.
Select Add profile and choose your profile package.
Testing requires a test Mac that is present in your Apple Business Manager (ABM) account. We will wipe this Mac and use it to test the custom macOS Setup Assistant.
Wipe the test Mac by selecting the Apple icon in top left corner of the screen, selecting System Settings or System Preference, and searching for "Erase all content and settings." Select Erase All Content and Settings.
In Fleet, navigate to the Hosts page and find your Mac. Make sure that the host's MDM status is set to "Pending."
New Macs purchased through Apple Business Manager appear in Fleet with MDM status set to "Pending." Learn more about these hosts here.
Transfer this host to the "Workstations (canary)" team by selecting the checkbox to the left of the host and selecting Transfer at the top of the table. In the modal, choose the Workstations (canary) team and select Transfer.
Boot up your test Mac and complete the custom out-of-the-box setup experience.
You can configure software installations and a script to be executed during Setup Assistant. This capability allows you to configure your end users' machines during the unboxing experience, speeding up their onboarding and reducing setup time.
If you configure software and/or a script for setup experience, users will see a window like this pop open after their device enrolls in MDM via ADE:
This window shows the status of the software installations as well as the script exectution. Once all steps have completed, the window can be closed and Setup Assistant will proceed as usual.
To configure software to be installed during setup experience:
Click on the "Controls" tab in the main navigation bar. Click on "Setup experience", and then on "4. Install software".
Click the "Add software" button. In the modal, select the software that you want to have installed during the setup experience. You can search the list of software by using the search bar in the modal. Click "Save" to save your selection and close the modal.
To configure a script to run during setup experience:
Click on the "Controls" tab in the main navigation bar. Click on "Setup experience", and then on "5. Run script".
Click "Upload" and select a script (.sh file) from the file picker modal. Once the script is uploaded, you can use the buttons on the script in the web UI to download or delete the script.
Fleet also provides a REST API for managing setup experience software and scripts programmatically. Learn more about Fleet's REST API.
To manage setup experience software and script using Fleet's best practice GitOps, check out the macos_setup
key in the GitOps reference documentation here