(Not Jamf Pro specific but I figure this is the most appropriate channel)
If you've been using Microsoft AutoUpdate (MAU) to manage updates to Office for Mac you might have noticed that your Office apps have been stuck on the October 2023 Office 16.78 release (the last release to support an Office 2019 license). This appears to be due MAU's license detection mechanism failing to properly detect a Microsoft 365 Subscription license since MAU 4.65 released in November 2023.
If you aren't seeing the post 16.78 Office releases, and your users have Microsoft 365 Subscription licenses, deploy a Configuration Profile with an Application & Custom Settings payload for the com.microsoft.autoupdate2 preferences domain and the .plist:
<?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>AppCustomPref</key>
<dict>
<key>/Applications/Microsoft Excel.app</key>
<dict>
<key>OfficeActivationLicense</key>
<string>Subscription</string>
</dict>
<key>/Applications/Microsoft Outlook.app</key>
<dict>
<key>OfficeActivationLicense</key>
<string>Subscription</string>
</dict>
<key>/Applications/Microsoft PowerPoint.app</key>
<dict>
<key>OfficeActivationLicense</key>
<string>Subscription</string>
</dict>
<key>/Applications/Microsoft Word.app</key>
<dict>
<key>OfficeActivationLicense</key>
<string>Subscription</string>
</dict>
<key>com.microsoft.office</key>
<dict>
<key>OfficeActivationLicense</key>
<string>Subscription</string>
</dict>
</dict>
</dict>
</plist>
Once that Configuration Profile is deployed push MAU 4.67 to your Macs and with MAU configured to use the Current channel for updates that should allow the January 2024 Office 16.81 updates to install.
If you are using MAU configured to use one of the Deferred Update Channels that Microsoft announced at JNUC 2021 Microsoft has failed to push the 16.81 updates to those channels as of this writing, and the 16.80 updates from December 2023 are the latest available there.
