Monday, January 26, 2015

Office Web Apps Server 2013 and Office Online Server 2016 Updates and versions

As usual, if I spent too much time figuring something out, I post it here.  Partially to document for myself for next time, and partially to help the community.   Today, I was working on a customer with an OWAS server and wanted to determine the last OWAS patches deployed and patch it to the current version.  So I checked the add/remove programs and the version listed there was the RTM, and when showing updates, it showed me KB articles, but no version numbers.

There are several partial lists out there - here is a shoutout to a few sources of info:

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.

This will output the version nice and clearly.  You can see here that I have 15.0.4693.1000 installed (and that is not on any of the previously linked lists)  This is the January 20th 2015 update posted here And please be sure to follow the Microsoft documentation on applying patches!


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

  1. Introduced new WOPI bindings, most significantly for WordPdf
  2. Removal of one WOPI binding; mobileView for WordPdf removed
  3. Includes fix for reported event log id's 1009 and 1150

10 comments:

Unknown said...

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"]

Unknown said...

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.

Lawyerzone said...

This is good post.

Unknown said...

Just what I needed....thanks!

Eric Raff said...

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

Unknown said...

Thanks so much for keeping this page up to date - it's a valuable community service, especially for us Lync/Skype for Business admins.

Chris Lehr said...

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)

Unknown said...

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

Chris Lehr said...

@Matt Holmes - thanks fixed!

Tobie Fysh said...

Does the Invoke-Webrequest work of Office Online Server?