<?xml version="1.0" encoding="utf-8"?>
<installer-gui-script minSpecVersion="1">
    <title>Microsoft AutoUpdate</title>
    <organization>com.microsoft</organization>
    <options customize="never" require-scripts="true" rootVolumeOnly="true" hostArchitectures="arm64,x86_64"/>
    <allowed-os-versions>
        <os-version min="12.0"/>
    </allowed-os-versions>
    <!-- Component packages to be included in the distribution. -->
    <pkg-ref id="com.microsoft.autoupdate" packageIdentifier="com.microsoft.package.Microsoft_AutoUpdate.app" version="4.83.26040910" installKBytes="10763" updateKBytes="0">#Office16_autoupdate_updater.pkg</pkg-ref>
    <!-- Choices which reference defined pkg-refs. -->
    <choices-outline>
        <line choice="com.microsoft.autoupdate"/>
    </choices-outline>
    <!-- Choice definitions for each package choice above. -->
    <choice id="com.microsoft.autoupdate">
        <pkg-ref id="com.microsoft.autoupdate">
            <must-close>
                <app id="com.microsoft.autoupdate2"/>
            </must-close>
        </pkg-ref>
    </choice>
    <installation-check script="InstallationCheck();"/>
    <script>
	function InstallationCheck()
	{
		var result;
		try {
			result = system.compareVersions(system.version.ProductVersion, '12.0.0') &gt;= 0;
		} catch (e) { }

		if (!result)
		{
			my.result.type = 'Fatal';
			my.result.title = system.localizedString('require-min-os-title');
			my.result.message = system.localizedString('require-min-os-message');;
		}
		return result;
	}
	</script>
    <pkg-ref id="com.microsoft.autoupdate">
        <bundle-version>
            <bundle CFBundleShortVersionString="4.83" CFBundleVersion="4.83.26040910" id="com.microsoft.autoupdate.fba" path="Microsoft AutoUpdate.app/Contents/MacOS/Microsoft Update Assistant.app"/>
            <bundle CFBundleShortVersionString="16.108" CFBundleVersion="16.108.26040910" id="com.microsoft.errorreporting" path="Microsoft AutoUpdate.app/Contents/SharedSupport/Microsoft Error Reporting.app"/>
            <bundle CFBundleShortVersionString="4.83" CFBundleVersion="4.83.26040910" id="com.microsoft.autoupdate2" path="Microsoft AutoUpdate.app"/>
        </bundle-version>
    </pkg-ref>
</installer-gui-script>