Difference between revisions of "Microsoft AutoUpdate"

From AFP548 Wiki
Jump to navigation Jump to search
(Created page with "=== MAU Channels === Starting with the release of MAU 3.3 in December 2015, MAU understands 4 channels: * Internal * External * Production * Custom ==== Internal ==== The In...")
 
Line 9: Line 9:
 
==== Internal ====
 
==== Internal ====
 
The Internal channel will be builds 2 weeks prior to production. The Internal channel will remain undocumented with no GUI but you can set it via a plist pref 'ChannelName'
 
The Internal channel will be builds 2 weeks prior to production. The Internal channel will remain undocumented with no GUI but you can set it via a plist pref 'ChannelName'
 +
 +
<code>defaults write com.microsoft.autoupdate2 ChannelName -string 'Internal'</code>
  
 
==== External ====
 
==== External ====
 
The External channel will be a week prior to production.
 
The External channel will be a week prior to production.
 
In MAU 3.4 which will release in January, there will be a checkbox to opt into the Insiders program which will set the channel to External.
 
In MAU 3.4 which will release in January, there will be a checkbox to opt into the Insiders program which will set the channel to External.
 +
 +
<code>defaults write com.microsoft.autoupdate2 ChannelName -string 'External'</code>
 +
 +
To disable the checkbox and prevent end users from subscribing to the Office Insider program:
 +
 +
<code>defaults write com.microsoft.autoupdate2 DisableInsiderCheckbox -bool TRUE</code>
  
 
==== Production ====
 
==== Production ====
Line 23: Line 31:
 
==== References ====
 
==== References ====
 
https://macadmins.slack.com/archives/microsoft-office/p1448548334002032
 
https://macadmins.slack.com/archives/microsoft-office/p1448548334002032
 +
 +
https://macadmins.slack.com/archives/microsoft-office/p1450416999005107

Revision as of 03:20, 5 March 2016

MAU Channels

Starting with the release of MAU 3.3 in December 2015, MAU understands 4 channels:

  • Internal
  • External
  • Production
  • Custom

Internal

The Internal channel will be builds 2 weeks prior to production. The Internal channel will remain undocumented with no GUI but you can set it via a plist pref 'ChannelName'

defaults write com.microsoft.autoupdate2 ChannelName -string 'Internal'

External

The External channel will be a week prior to production. In MAU 3.4 which will release in January, there will be a checkbox to opt into the Insiders program which will set the channel to External.

defaults write com.microsoft.autoupdate2 ChannelName -string 'External'

To disable the checkbox and prevent end users from subscribing to the Office Insider program:

defaults write com.microsoft.autoupdate2 DisableInsiderCheckbox -bool TRUE

Production

(self explanitory, more info to come later about release cycle?)

Custom

Setting the ChannelName to 'Custom' will enable another pref called 'ManifestServer' where you can point to your own server.


References

https://macadmins.slack.com/archives/microsoft-office/p1448548334002032

https://macadmins.slack.com/archives/microsoft-office/p1450416999005107