Sometimes an administrator needs to delegate deployment of software to members of his staff or he may have one custom installation that he uses for most of his users. By modifying the distribution.dist file within the Office Installer.mpkg package, he can pre-select, deselect, disable or enforce default options for installation.
For example, both Communicator and Messenger are included in the volume license edition of Office for Mac 2011. However, each application can communicate with only one version of Office Communications Server (OCS). If an organization has not yet upgraded its OCS from 2007 to 2010 then it will need to continue using Messenger 7.0 and the administrator may want to prevent installation of Communicator.
The distribution.dist file is located within the Office Installer.mpkg package. To access it simply right-click or Control-click the Office Installer.mpkg file and select Show Package Contents from the contextual menu. Then navigate to:
/Contents/distribution.dist
Modifying the distribution.dist file
Note: While this procedure is relatively benign, it is neither endorsed nor supported by Microsoft.
Modifying the distribution.dist file will require a plain text editor such as TextEdit found in /Applications or BBEdit or a Terminal text editor such as VI. To modify the default installation, such as choosing the behavior for installing Office Fonts, copy the entire Office Installer.mpkg package to a writable location such as your Desktop.
- Locate the distribution.dist file above and open it in your text editor of choice.
- Scroll to
and note the list of available choices. These choices correspond to the choices available when double-clicking the Office Installer.mpkg package and clicking the Customize button. - Immediately below this section, locate the corresponding choice for each choice in the list. The choice for fonts is:
tooltip="fonts-tooltip" start_selected="false" start_enabled="false"
start_visible="false"> - Locate these three important properties and values in the choice:
start_selected="true"
start_enabled="true"
start_visible="true"The
start_selectedproperty affects whether or not a choice is selected or deselected and thestart_enabledproperty affects whether or not the choice can be modified. By setting the values of these properties to either true of false, four install combinations are possible. An option can be enabled and optional, enabled and enforced, disabled and optional, and disabled and enforced. -
The third property
start_visiblewith a value set to false will completely hide Office Fonts altogether: - Save the distribution.dist file and test the installer by double-clicking it and verifying the correct choices are enabled or enforced correctly.













