Update Microsoft Office 2004 Mac Os X

  1. Microsoft Office Auto Update Mac
  2. Update Microsoft Office 2004 Mac Os X 10 13 Download
  • May 25, 2005 Microsoft Office 2004 11.6.6 update for Mac OS X. Most non-Roman fonts with ease and take advantage of the long file name capabilities built into Mac OS X. 2007 Microsoft Office Add-in.
  • Apr 07, 2020  How do I restore Microsoft Word to original settings on Mac OS Catalina? I have up to date Mac OS Catalina with office 365, so previous instructions on how to.
-->

This article is for IT administrators managing OneDrive settings in work or school environments. If you're not an IT administrator, read Get started with the new OneDrive sync app on Mac OS X.

Microsoft’s Mac Business Unit rolled out a pair of security- and stability-enhancing updates for Office 2008 and Office 2004 on Tuesday. The Microsoft Office 2008 for Mac 12.2.6 update contains. Download now the serial number for Microsoft Office 2004 for Mac Os X. All serial numbers are genuine and you can find more results in our database for Microsoft software. Updates are issued periodically and new results might be added for this applications from our community.

Manage OneDrive settings on macOS using property list (Plist) files

Use the following keys to preconfigure or change settings for your users. The keys are the same whether you run the store edition or the standalone edition of the sync app, but the property list file name and domain name will be different. When you apply the settings, make sure to target the appropriate domain depending on the edition of the sync app.

StandaloneMac App Store
PList Location
~/Library/Preferences/com.microsoft.OneDrive.plist
~/Library/Containers/com.microsoft.OneDrive-mac/Data/Library/Preferences/com.microsoft.OneDrive-mac.plist
Domain
com.microsoft.OneDrive
com.microsoft.OneDrive-mac

Deploy the sync app settings

Deploy the settings on macOS in the typical way:

Like previous versions, the latest iteration of the MacBook Air features up to 12 hours of battery life. Sure, some will be able to take advantage of its more powerful processors available to it. And though it might not be as powerful as the MacBook Pro, it offers enough power for the average student to get through their daily scholastic workload, especially when outfitted with the optional quad-core Intel Core i7 processor.The 2020 MacBook Air should also have enough battery to take you from class to class. What better microsoft or mac for college students. This version also features an improved, scissor switch-based Magic Keyboard, just like the 16-inch MacBook Pro.The MacBook Pro is probably overkill for most students.

  1. Quit the OneDrive application.

  2. Define the settings you want to change by creating a Plist with the values, or use a script to set the default values.

  3. Deploy the settings onto the local computer.

  4. Refresh the preferences cache.

    On the next start of OneDrive, the new settings will be picked up.

Overview of settings

The following table lists all the settings that are currently exposed for the OneDrive sync app. You need to configure the parameters in parentheses.

SettingDescriptionParametersExample Plist Entry
Disable personal accounts
Blocks users from signing in and syncing files in personal OneDrive accounts. If this key is set after a user has set up sync with a personal account, the user will be signed out.
DisablePersonalSync (Bool): When set to true, this parameter prevents users from adding or syncing personal accounts.
<key>DisablePersonalSync</key>
<(Bool)/>
Default folder location
Specifies the default location of the OneDrive folder for each organization
TenantID (String): TenantID determines which accounts the default folder location setting should apply to. Find your Office 365 tenant ID
DefaultFolderPath (String): DefaultFolder specifies the default folder location.
Mac App Store:
The path must already exist when users set up the sync app.
Standalone:
The path will be created on users' computers if it doesn't already exist. Only with the Standalone sync app can you prevent users from changing the location.
<key>Tenants</key>
<dict>
<key>(TenantID)</key>
<dict>
<key>DefaultFolder</key>
<string>(DefaultFolderPath)</string>
</dict>
</dict>
Automatic upload bandwidth percentage
Enables the sync app to automatically set the amount of bandwidth used based on available bandwidth for uploading files
AutomaticUploadBandwidthPercentage (int): This parameter determines the percentage of local upload bandwidth that the sync app can use. Accepted values are from 1 through 99.
<key>AutomaticUploadBandwidthPercentage</key>
<int>(Bandwidth)</int>
Set maximum upload throughput
Sets the maximum upload throughput rate in kilobytes (KB)/sec for computers running the OneDrive sync app
UploadBandwidthLimited (int): This parameter determines the upload throughput in KB/sec that the sync app can use. The minimum rate is 50 KB/sec and the maximum rate is 100,000 KB/sec.
<key>UploadBandwidthLimited</key>
<int>(Upload Throughput Rate in KB/sec)</int>
Set maximum download throughput
Sets the maximum download throughput rate in kilobytes (KB)/sec for computers running the OneDrive sync app
DownloadBandwidthLimited (int): This parameter determines the download throughput in KB/sec that the sync app can use. The minimum rate is 50 KB/sec and the maximum rate is 100,000 KB/sec.
<key>DownloadBandwidthLimited</key>
<int>(Download Throughput Rate in KB/sec)</int>
Dock icon
Specifies whether a dock icon for OneDrive is shown
HideDockIcon (Bool): When set to true, this parameter hides the OneDrive dock icon even when the application is running.
<key>HideDockIcon</key>
<(Bool)/>
Open at login
Specifies whether OneDrive starts automatically when the user logs in
OpenAtLogin (Bool): When set to true, OneDrive will start automatically when the user logs in on the Mac.
<key>OpenAtLogin</key>
<(Bool)/>
Enable Files On-Demand
Specifies whether Files On-Demand is enabled. If you don't set this setting, Files On-Demand will be enabled automatically as we roll out the feature, and users can turn the setting on or off
FilesOnDemandEnabled (Bool): When set to true, new users who set up the sync app will download online-only files by default. When set to false, Files On-Demand will be disabled and users won't be able to turn it on.
<key>FilesOnDemandEnabled</key>
<(Bool)/>
Disable download toasts
Prevents toasts from appearing when applications cause file contents to be downloaded
DisableHydrationToast (Bool): When set to true, toasts will not appear when applications trigger the download of file contents.
<key>DisableHydrationToast</key>
<(Bool)/>
Block apps from downloading online-only files
Prevents applications from automatically downloading online-only files. You can use this setting to lock down applications that don't work correctly with your deployment of Files On-Demand.
HydrationDisallowedApps (String): Json in the following format
[{'ApplicationId':'appId','MaxBundleVersion':'1.1','MaxBuildVersion':'1.0'}]
'AppID' can be either the BSD process name or the bundle display name. MaxBuildVersion denotes the maximum build version of the application that will be blocked. MaxBundleVersion denotes the maximum bundle version of the application that will be blocked
<key>HydrationDisallowedApps </key>
<string> [{'ApplicationId':'appId','MaxBundleVersion':'1.1','MaxBuildVersion':'1.0'}, {'ApplicationId':'appId2','MaxBundleVersion':'3.2','MaxBuildVersion':'2.0'}]</string>
<(Bool)/>
SharePoint Server Front Door URL
Specifies the SharePoint Server 2019 on-premises URL that the OneDrive sync app should try to authenticate and sync against
SharePointOnPremFrontDoorUrl (string): The URL of the on-premises SharePoint Server.
<key>SharePointOnPremFrontDoorUrl</key>
<string>https://Contoso.SharePoint.com</string>
SharePoint Server Tenant Name
Specifies the name of the folder created for syncing the SharePoint Server 2019 files specified in the Front Door URL.
SharePointOnPremTenantName (string): The name that will be used when creating a folder to sync the on-premises SharePoint Server files. If specified, the folder names will take the form of:
OneDrive – TenantName
TenantName
If not specified, the folder names will use the first segment of the FrontDoorURL as the Tenant Name.
Example - https://Contoso.SharePoint.com will use Contoso as the Tenant Name
<key>SharePointOnPremTenantName</key>
<string>Contoso</string>
SharePoint OnPrem Prioritization
For hybrid scenarios where the email is the same for both SharePoint Server on-premises and SharePoint Online, determines whether or not the client should set up sync for SharePoint Server or SharePoint Online first during the first-run scenario.
SharePointOnPremPrioritizationPolicy (int): This parameter determines which service to attempt to authenticate against for setting up sync.
1 indicates OneDrive should setup SharePoint Server on-premises first, followed by SharePoint Online.
<key>SharePointOnPremPrioritizationPolicy</key>
<int>(0 or 1)</int>
BlockExternalSyncPrevents the sync app from syncing libraries and folders shared from other organizations.BlockExternalSync (Bool): Set to true to prevent syncing OneDrive for Business and SharePoint libraries and folders from organizations other than the user's own organization. Set to false or do not include the setting to allow.
Learn about OneDrive B2B Sync.
<key>BlockExternalSync</key>
<(Bool)/>

You can also configure the OneDrive Standalone sync app to receive delayed updates.

Microsoft updates for mac
PList Location
~/Library/Preferences/com.microsoft.OneDriveUpdater.plist
Domain
com.microsoft.OneDriveUpdater
SettingDescriptionParametersExample Plist Entry
Tier
Defines the update ring for the computer
UpdateRing (String): This parameter has two different values.
Production - The default update ring for OneDrive updates.
Insiders - This update ring receives updates that are 'pre-production' and will allow you to play with features before they are released. Note that builds from this ring may be less stable.
Enterprise - This update ring receives updates after they have rolled out through the Production ring. It also lets you control the deployment of updates. For more info about the update rings and how the sync app checks for updates, see The OneDrive sync app update process.
<key>Tier</key>
<string>(UpdateRing)</string>
-->

Office for Mac that comes with an Office 365 subscription is updated on a regular basis to provide new features, security updates, and non-security updates. The following information is primarily intended for IT professionals that are deploying Office for Mac to the users in their organizations.

Note

  • Starting with Version 16.21, Microsoft Teams will be installed by default for new installations if you're using the Office suite install package. For more information, see Microsoft Teams installations on a Mac.
  • For security reason, Microsoft has deprecated the use of SHA-1. Learn more
  • Starting with the 16.17 release in September 2018, this information also applies to Office 2019 for Mac, which is a version of Office for Mac that’s available as a one-time purchase from a retail store or through a volume licensing agreement.
  • The update history information for version 16.16 and earlier also applies to Office 2016 for Mac, which is also a version of Office for Mac that’s available as a one-time purchase. Older versions up to and including 16.16 can be activated with an Office 2016 for Mac volume license. You can’t activate version 16.17 or later with an Office 2016 for Mac volume license. For information about Office 2016 for Mac releases from September onward, see Release notes for Office 2016 for Mac
  • For information about the features, security updates, and non-security updates that are included in a given release of Office for Mac, see Release notes for Office for Mac.
  • If you want early access to new releases, join the Office Insider program.

Most current packages for Office for Mac

The following table lists the most current packages for the Office suite and for the individual applications. The Office suite includes all the individual applications, such as Word, PowerPoint, and Excel. All packages are 64-bit only. The build date is listed in parentheses, in a YYMMDD format, after the version number. The install package is used if you don't have the application already installed, while the update package is used to update an existing installation.

To view release notes, see Release notes.

Update microsoft office 2004 mac os x 10 11

March 10, 2020

Version 16.35 (20030802)

ApplicationDownload linksSHA-256 hash for install package
Office suite (with Teams)Install package8E86CC3EDDB5D7AD0EBA34264C6017D8B3DB9BBC425106F8C5B1BBAC1C7966DA
Office suite (without Teams)Install packageDA6F028AB5A69FC48668A311A74231A9CDCDA1576D2EBB1C06E7A7DD53ED8510
WordInstall package
Update package
27BB4CAD84F7E15AA5E0AB48C18E620F08A4AA1AF05352847E8AA8924390005F
ExcelInstall package
Update package
DFE5F4230DC3E4B85FF226E260580FBD5A85893DD17C6165721F92A03FDFDF91
PowerPointInstall package
Update package
65292F7CDA8C53FB796332B84398F3A4528831CCED9E7E5614A778055F7683AF
OutlookInstall package
Update package
92094986AE997694549E9FA54347663F4720B7842D6E5FF7525BBB4897EB5C94
OneNoteUpdate packageNot applicable

Most current packages for other Mac programs from Microsoft

Microsoft Office Auto Update Mac

The following table provides information about the most current packages, including a download link, for other Mac programs from Microsoft that may be of interest to IT professionals. The build date is listed in parentheses, in a YYMMDD format, after the version number.

Note: Microsoft AutoUpdate (MAU) release information has moved to the MAU Release History page.

ProgramVersionPackageMore informationSHA-1/ SHA-256 hash
Skype for Business
16.27.37
Download
The latest version was released on June 23, 2019.
Latest updates
ac33fbfa83e304e1ac3ba7365e8bf307b117ec954fd48902991356ee86f2e836
Remote Desktop10.3.1DownloadThis install package is 64-bit.
What's new
a846cecda7391b4e67c37b4b30a0c49ebd3c80f4782a989c0b4f866cd6d09339
Intune Company Portal1.17 (52.1908008.000) [190823]DownloadWhat's new in Microsoft Intunefec704b5194360a48365d0193a46135358c5f129fc2b1fb02acb902cd1f96de0
Microsoft SharePoint On-Premises Safari Browser Plugin for Office 2016 for Mac
15.32.0 (170309)
Download
This install package is 64-bit.
f7f29202881a319fb249d15ab6125b5a1a94b303c649cbe3fafb37ecd4728ed8

Release history for Office for Mac

The following table provides release history information and download links for Office for Mac. The table is ordered by release date, with the most recent release date listed first. The build date is listed in parentheses, in a YYMMDD format, after the version number. All releases after August 22, 2016 are 64-bit only. All releases prior to August 22, 2016 are 32-bit only.

Note

Download links are only provided for the most recent releases.

Update Microsoft Office 2004 Mac Os X 10 13 Download

Release dateVersionInstall packageUpdate packages
March 10, 202016.35 (20030802)Office suite (with Teams)
Office suite (without Teams)
Word, Excel, PowerPoint, Outlook, OneNote
February 11, 202016.34 (20020900)Office suite (with Teams)
Office suite (without Teams)
Word, Excel, PowerPoint, Outlook, OneNote
January 14, 202016.33 (20011301)Office suite (with Teams)
Office suite (without Teams)
Word, Excel, PowerPoint, Outlook, OneNote
December 10, 2019
16.32 (19120802)
Office suite (with Teams)
Office suite (without Teams)
Word, Excel, PowerPoint, Outlook, OneNote
November 12, 2019
16.31 (19111002)
Office suite (with Teams)
Office suite (without Teams)
Word, Excel, PowerPoint, Outlook, OneNote
October 15, 2019
16.30 (19101301)
Office suite (with Teams)
Office suite (without Teams)
Word, Excel, PowerPoint, Outlook, OneNote
September 18, 2019
16.29.1 (19091700)
Word, Excel, PowerPoint
September 10, 2019
16.29 (19090802)
Office suite (with Teams)
Office suite (without Teams)
Word, Excel, PowerPoint, Outlook, OneNote
August 13, 2019
16.28 (19081202)
Office suite (with Teams)
Office suite (without Teams)
Word, Excel, PowerPoint, Outlook, OneNote
July 16, 2019
16.27 (19071500)
Office suite (with Teams)
Office suite (without Teams)
Word, Excel, PowerPoint, Outlook, OneNote
June 11, 2019
16.26 (19060901)

May 14, 2019
16.25 (19051201)

April 16, 2019
16.24 (19041401)

March 27, 2019
16.23.1 (19032603)
March 12, 2019
16.23.0 (19030902)

February 20, 2019
16.22 (19022000)


January 24, 2019
16.21 (19011700)
January 16, 2019
16.21 (19011500)
December 11, 2018
16.20 (18120801)
November 13, 2018
16.19 (18110915)
October 16, 2018
16.18 (18101400)
September 11, 2018
16.17 (18090901)
August 14, 2018
16.16 (18081201)
July 10, 2018
16.15 (18070902)
June 13, 2018
16.14.1 (18061302)
June 12, 2018
16.14.0 (18061000)
May 24, 2018
16.13.1 (18052304)
May 23, 2018
16.13.1 (18052203)
May 15, 2018
16.13.0 (18051301)
April 11, 2018
16.12.0 (18041000)
March 19, 2018
16.11.1 (18031900)
March 13, 2018
16.11.0 (18031100)
February 13, 2018
16.10.0 (18021001)
January 26, 2018
16.9.1 (18012504)
January 18, 2018
16.9.0 (18011602)
December 12, 2017
15.41.0 (17120500)
November 14, 2017
15.40.0 (17110800)
October 10, 2017
15.39.0 (17101000)
September 12, 2017
15.38.0 (17090200)
August 15, 2017
15.37.0 (17081500)
July 21, 2017
15.36.1 (17072101)
July 11, 2017
15.36.0 (17070200)
June 16, 2017
15.35.0 (17061600)
June 13, 2017
15.35.0 (17061000)
May 16, 2017
15.34.0 (17051500)
April 11, 2017
15.33.0 (17040900)
March 14, 2017
15.32.0 (17030901)
February 16, 2017
15.31.0 (17021600)
January 11, 2017
15.30.0 (17010700)