There are several partial lists out there - here is a shoutout to a few sources of info:
- Good: http://blogs.technet.com/b/office_web_apps_server_2013_support_blog/archive/2014/06/05/how-to-ensure-you-39-re-using-the-patched-version-of-sp1-for-office-web-apps-server-2013.aspx
- Better: http://blogs.technet.com/b/steve_chen/archive/2013/03/26/3561010.aspx#WAC
- Best: http://www.wictorwilen.se/WACVersions
- Microsoft: The best way to find these has been to search the download center and sort by date from newest to oldest: http://www.microsoft.com/en-us/search/DownloadsDrillInResults.aspx?q=office+web+apps+server+2013&cateorder=2_5_1&site=&sortby=-availabledate
Wictor's blog entry offered up the best tip - How to determine your OWAS version. Quite simply, look at HTTP headers, and here's the simple one-liner:
(Invoke
-WebRequest
https://server.fqdn.com/m/met/participant.svc/jsonAnonymous/BroadcastPing).Headers[
"X-OfficeVersion"
]
I've made a tiny script available here to prompt you for OWAS FQDN and check your version up in the Technet Gallery.
Wictor also has this GREAT post on patching - recommend following this! In the interest of trying to keep this information up to date, I will build on Wictor's list and update with any that people comment. Please comment with the link to download as well as the version reported and I will update this list!
Name | Version | KB |
RTM | 15.0.4420.1007 | |
March 2013 Public Update (1) | 15.0.4481.1005 | KB2760445 |
April 2013 Update | 15.0.4481.1508 | KB2810007 |
August 2013 Hotfix | 15.0.4535.1000 | KB2817521 |
October 2013 Cumulative Update (2) | 15.0.4551.1003 | KB2825686 |
November 2013 Update (3) | 15.0.4551.1005 | KB2837634 |
December 2013 Hotfix | 15.0.4551.1508 | KB2850013 |
January 2014 Security Update (MS14-001) | 15.0.4551.1515 | KB2863879 |
Service Pack 1 Preview | 15.0.4569.1001 | n/a |
Service Pack 1 | 15.0.4569.1506 | KB2817431 |
Service Pack 1 - Rerelease | 15.0.4571.1502 | KB2880558 |
April 2014 Public Update | 15.0.4605.1001 | KB2863899 |
May 2014 Public Update | 15.0.4615.1001 | KB2880453 |
June 2014 Cumulative Update | 15.0.4623.1001 | KB2881051 |
July 2014 Cumulative Update | 15.0.4631.1000 | KB2883003 |
August 2014 Cumulative Update | 15.0.4675.1000 | KB2883057 |
January 2015 Cumulative Update | 15.0.4693.1000 | Download (KB link is 404) |
February 2015 Cumulative Update | 15.0.4693.1001 | KB2956101 |
March 2015 Cumulative Update | 15.0.4701.1000 | KB2956158 Download |
April 2015 Cumulative Update | 15.0.4711.1002 | KB2965306 Download |
May 2015 Security Update | 15.0.4719.1002 | KB3039748 Download |
July 2015 Cumulative Update | 15.0.4737.1000 | KB3054930 Download |
August 2015 Cumulative Update | 15.0.4745.1000 | KB3055003 Download |
September 2015 Security Update | 15.0.4753.1000 | KB3085487 Download |
November 2015 Security Update | 15.0.4771.1000 | KB3101367 Download |
February 2016 Security Update | 15.0.4797.1000 | KB3114338 Download |
Office Online Server Technical Preview | 16.0.3930.1033 | Blog Download |
Office Online Server RTM | 16.0.6814.2226 | Not available publicly, check MSDN/VL |
Version notes
- Introduced new WOPI bindings, most significantly for WordPdf
- Removal of one WOPI binding; mobileView for WordPdf removed
- Includes fix for reported event log id's 1009 and 1150
10 comments:
August 2014 update version appears to be 15.0.4675.1000
Also, the URL for checking the version isn't correct. It should be
(Invoke-WebRequest https://serverFQDN/m/met/participant.svc/jsonAnonymous/BroadcastPing).Headers["X-OfficeVersion"]
Another note. The Invoke-Webrequest method will throw an error if the server FQDN is not in the certificate SAN list, which, unfortunately, is common. You can specify the farm FQDN, but then you're not assured of which server you're hitting if you have more than one in the farm.
This is good post.
Just what I needed....thanks!
If I have a WAC server that has 15.0.4481.1508 on it, do I need to apply the SP1 update before applying the latest CU or can I just drop the latest CU on it? Thanks
Thanks so much for keeping this page up to date - it's a valuable community service, especially for us Lync/Skype for Business admins.
For order of installation, I typically do the RTM, then SP1 re-release, then the latest CU. (not comment date, this comment may self destruct in time)
Just as an FYI, you have the Version numbers for the September 2015 and November 2015 Security Updates switched around.
November 2015 Security Update version should be 15.0.4771.1000
@Matt Holmes - thanks fixed!
Does the Invoke-Webrequest work of Office Online Server?
Post a Comment