Overview The feature all Intune admins managing corporate macOS devices have been waiting for a long is out! It appeared on my test tenant, and I could not resist myself to test it out. Let me take you through all these brand-new features and help you configure the policies in
The feature all Intune admins managing corporate macOS devices have been waiting for a long is out!
It appeared on my test tenant, and I could not resist myself to test it out. Let me take you through all these brand-new features and help you configure the policies in Intune to manage macOS software updates for enrolled devices using Automated Device Enrollment (ADE).
With this new feature, you will now be able to configure the below update types will include:
In addition to scheduling when a device receives the updates, you’ll be able to manage the following features:
Apple operating systems use a version numbering scheme to distinguish major upgrades from minor updates. Unlike iOS/iPadOS/TV OS, macOS uses a simple integer (for example, macOS 11 and macOS 12) with a name like Big Sur and Monterey.
Upgrades are released much less frequently than updates and can take a while to install because of their large size. In comparison, updates are more frequently released patches for the current operating system and help protect the device against vulnerabilities. Updates use a second and sometimes a third number to denote increments. For example, iOS 15.1 is an update to iOS 15.
With this new feature, Intune allows you to manage, download, install, or even defer macOS software upgrades and updates remotely.
The MDM solution (Intune) uses the Apple Software Lookup service to be aware of available updates to push the update commands directly to the device.
Earlier Approach:
New Approach:
Once Intune knows which OS update applies to devices, the ScheduleOSUpdate command is used to push to update the macOS. Intune can trigger this command even during a software deferral window also. The five options available now for macOS have their own significance; let’s understand the logic behind each of them:
Thumb Rule: Avoid It!
The InstallASAP command is the default mechanism for the ScheduleOSUpdate command, with a default for InstallAction to download the updates. It downloads the software update and triggers the restart countdown notification. This command may require a restart (if the InstallForceRestart option is used). This may result in data loss on the end user’s device.
This command downloads the software update in the background without installing it on the device. It will not start the installation.
All these requests are in json format. Below is the example of a device requesting an update and the response given back:
Request Update:
<?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>Command</key>
<dict>
<key>RequestType</key>
<string>ScheduleOSUpdate</string>
<key>Updates</key>
<array>
<dict>
<key>InstallAction</key>
<string>DownloadOnly</string>
<key>ProductKey</key>
<string>iOSUpdate17A576</string>
<key>ProductVersion</key>
<string>13.0</string>
</dict>
</array>
</dict>
<key>CommandUUID</key>
<string>0001_ScheduleOSUpdate</string>
</dict>
</plist>
Request Update:
<?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>CommandUUID</key>
<string>0001_ScheduleOSUpdate</string>
<key>Status</key>
<string>Acknowledged</string>
<key>UDID</key>
<string>00008020-000915083C80012E</string>
<key>UpdateResults</key>
<array>
<dict>
<key>InstallAction</key>
<string>DownloadOnly</string>
<key>ProductKey</key>
<string>iOSUpdate17A576</string>
<key>Status</key>
<string>Downloading</string>
</dict>
</array>
</dict>
</plist>
Notify only alerts users that there is an action pending for installation. The user is notified about the software update through the App Store. It will also not start the installation.
It will allow you to schedule the installation later tonight. The device will usually choose a time between 02:00 and 04:00 based on when the machine is least used to allow the update to install. The update will only install if the device is plugged into the power source.
I hope this article has been insightful in giving you a detailed understanding of how Intune & Apple help you to update your devices. Follow the three-step approach and keep your macOS devices updated with all the latest patches & updates. Recommended approach:
Keep learning and keep sharing.
Stay In(tuned). #intuneinspired