This repository was archived by the owner on Nov 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBuildNumbers.html
More file actions
1667 lines (1580 loc) · 114 KB
/
BuildNumbers.html
File metadata and controls
1667 lines (1580 loc) · 114 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="no-js hasSidebar hasPageActions hasBreadcrumb conceptual" lang="en-us" dir="ltr" data-authenticated="false" data-target="docs">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Exchange Server build numbers and release dates" />
<meta property="og:image" content="https://docs.microsoft.com/_themes/docs.theme/master/en-us/_themes/images/microsoft-header.png" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@docsmsft" />
<meta name="twitter:title" content="Exchange Server build numbers and release dates" />
<meta name="twitter:description" content="Summary: Learn about build numbers and release dates for current and past versions of Exchange Server." />
<meta name="twitter:image" content="https://docs.microsoft.com/_themes/docs.theme/master/en-us/_themes/images/microsoft-header.png" />
<meta name="twitter:image:alt" content="Microsoft Logo" />
<meta name="ms.devlang" content="powershell">
<meta name="ROBOTS" content="INDEX,FOLLOW">
<meta name="Manager" content="serdars">
<meta name="breadcrumb_path" content="/exchange/breadcrumb/toc.json?view=exchserver-2019">
<meta name="ms.technology" content="">
<meta name="ms.prod" content="exchange-server-it-pro">
<meta name="ms.audience" content="ITPro">
<meta name="ms.assetid" content="6a8091d0-4f19-4ae7-9e44-fd1c9f5fbe19">
<meta name="author" content="chrisda">
<meta name="description" content="Summary: Learn about build numbers and release dates for current and past versions of Exchange Server.">
<meta name="ms.author" content="chrisda">
<meta name="manager" content="serdars">
<meta name="ms.topic" content="overview">
<meta name="localization_priority" content="Normal">
<meta name="search.ms_sitename" content="Docs">
<meta name="search.ms_docsetname" content="OfficeDocs-Exchange">
<meta name="version" content="0">
<meta name="locale" content="en-us">
<meta name="site_name" content="Docs">
<meta name="search.ms_product" content="office">
<meta name="depot_name" content="office.OfficeDocs-Exchange">
<meta name="updated_at" content="2018-11-05 06:42 PM">
<meta name="gitcommit" content="https://github.com/MicrosoftDocs/OfficeDocs-Exchange-pr/blob/e5bdc2a03953cc7f4a8a590dcf0042460ba1161d/Exchange/ExchangeServer/new-features/build-numbers-and-release-dates.md">
<meta name="original_content_git_url" content="https://github.com/MicrosoftDocs/OfficeDocs-Exchange-pr/blob/live/Exchange/ExchangeServer/new-features/build-numbers-and-release-dates.md">
<meta name="document_id" content="aaf984bf-df1c-bcd5-6475-54b9ef24fe74">
<meta name="document_version_independent_id" content="00547ab9-7b3b-f6b0-fa7f-429f5e2bea56">
<meta name="monikers" content="exchserver-2016">
<meta name="monikers" content="exchserver-2019">
<meta name="page_type" content="conceptual">
<meta name="toc_rel" content="../servertoc/toc.json?view=exchserver-2019">
<meta name="pdf_url_template" content="https://docs.microsoft.com/pdfstore/en-us/office.OfficeDocs-Exchange/{branchName}{pdfName}">
<meta name="word_count" content="2579">
<meta name="scope" content="Exchange" />
<link href="https://docs.microsoft.com/en-us/exchange/new-features/build-numbers-and-release-dates" rel="canonical">
<title>Exchange Server build numbers and release dates | Microsoft Docs</title>
<link rel="stylesheet" href="/_themes/docs.theme/master/en-us/_themes/css/4e146f3a.site-ltr.css ">
<link rel="stylesheet" href="/_themes/docs.theme/master/en-us/_themes/css/fbd113ac.conceptual.css ">
<script>
var msDocs = {
data:{
azureHeaderLocale: 'en-us',
contentLocale: 'en-us',
contentDir: 'ltr',
userLocale: 'en-us',
userDir: 'ltr',
pageTemplate: 'Conceptual',
brand: '',
context: {
},
hasComments: true,
feedbackSystem: 'GitHub',
feedbackGitHubRepo: 'MicrosoftDocs/OfficeDocs-Exchange',
feedbackProductUrl: 'https://github.com/MicrosoftDocs/OfficeDocs-Exchange/issues',
contentGitUrl: 'https://github.com/MicrosoftDocs/OfficeDocs-Exchange/blob/public/Exchange/ExchangeServer/new-features/build-numbers-and-release-dates.md',
forceVersionPicker:false },
functions:{},
settings:{
extendBreadcrumb: true,
enableUHFPPE: false
}
};
if (!('Promise' in window && 'resolve' in window.Promise && 'reject' in window.Promise && 'all' in window.Promise && 'race' in window.Promise)) {
document.write('<script src="/_themes/docs.theme/master/en-us/_themes/global/js/6ee34c01.bluebird.min.js"><\/script>');
}
if (typeof fetch !== 'function') {
document.write('<script src="/_themes/docs.theme/master/en-us/_themes/global/js/d9fc435c.fetch.min.js"><\/script>');
}
</script>
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.3.1.min.js" integrity="sha384-tsQFqpEReu7ZLhBV2VZlAu7zcOV+rXbYlF2cqB8txI/8aZajjp4Bqd+V6D5IgvKT" crossorigin="anonymous"></script>
<script src="/_themes/docs.theme/master/en-us/_themes/global/js/9228aa03.global.min.js"></script>
</head>
<body lang="en-us" dir="ltr">
<div class="header-holder">
<div id="headerAreaHolder" data-bi-name="header">
<div id="uhf-placeholder"></div>
</div>
<div class="content-header uhf-container has-padding has-default-focus" data-bi-name="content-header">
<nav class="has-padding-none-mobile" data-bi-name="breadcrumb" itemscope itemtype="http://schema.org/BreadcrumbList" role="navigation" aria-label="Breadcrumb">
<ul class="breadcrumbs">
</ul>
</nav>
<div class="content-header-controls exit-focus">
<button type="button" class="ap-collapse-behavior ap-expanded button" data-bi-name="ap-collapse">
<span class="icon"><span class="docon docon-exit-mode"></span></span>
<span>Exit focus mode</span>
</button>
</div>
<div class="content-header-controls">
<button type="button" class="contents-button button" data-bi-name="contents-expand">
<span class="icon"><span class="docon docon-menu"></span></span>
<span>Contents</span>
</button>
</div>
<div class="action-bar">
<ul class="action-list">
<li>
<a href="#feedback" class="button is-text is-size-7 is-icon-only-touch" data-bi-name="comments">
<span class="icon">
<span class="docon docon-comment-lines" aria-hidden="true"></span>
</span>
<span class="action-item-text">Feedback</span>
</a>
</li>
<li id="contenteditbtn">
<a href="https://github.com/MicrosoftDocs/OfficeDocs-Exchange/blob/public/Exchange/ExchangeServer/new-features/build-numbers-and-release-dates.md" class="button is-text is-icon-only-touch is-size-7" title="Edit This Document" data-bi-name="edit" data-original_content_git_url="https://github.com/MicrosoftDocs/OfficeDocs-Exchange-pr/blob/live/Exchange/ExchangeServer/new-features/build-numbers-and-release-dates.md">
<span class="icon">
<span class="docon docon-edit-outline" aria-hidden="true"></span>
</span>
<span class="action-item-text">Edit</span>
</a>
</li>
<li>
<div class="sharing dropdown has-caret" auto-align>
<a href="#" class="dropdown-trigger button is-text is-size-7 is-icon-only-touch" aria-haspopup="true" aria-controls="sharing-menu" aria-expanded="false" title="Share This Document" data-bi-name="share">
<span class="icon">
<span class="docon docon-sharing" aria-hidden="true"></span>
</span>
<span class="action-item-text">Share</span>
</a>
<div class="dropdown-menu" id="sharing-menu" role="menu">
<ul data-bi-name="share-links">
<li><a class="share-twitter" data-bi-name="twitter">
<span class="icon">
<span class="docon docon-brand-twitter" aria-hidden="true"></span>
</span>
<span>Twitter</span></a></li>
<li><a class="share-linkedin" data-bi-name="linkedin">
<span class="icon">
<span class="docon docon-brand-linkedin" aria-hidden="true"></span>
</span>
<span>LinkedIn</span></a></li>
<li><a class="share-facebook" data-bi-name="facebook">
<span class="icon">
<span class="docon docon-brand-facebook" aria-hidden="true"></span>
</span>
<span>Facebook</span></a></li>
<li><a class="share-email" data-bi-name="email">
<span class="icon">
<span class="docon docon-mail-message-fill" aria-hidden="true"></span>
</span>
<span>Email</span></a></li>
</ul>
</div>
</div>
</li>
<li>
<button class="toggle-theme button is-text is-size-7 is-icon-only-touch" aria-label="toggle-theme" data-bi-name="select-theme">
<span class="icon">
<span class="docon docon-sun"></span>
</span>
<span class="action-item-text">Theme</span>
</button>
</li>
<li class="is-unstyled-action-list-item">
<a class="docs-sign-in not-authenticated button is-text has-text-primary is-size-7" href="#">Sign in</a>
<div class="dropdown has-caret authenticated" auto-align>
<button class="dropdown-trigger button is-text is-size-7 is-icon-only-touch has-inner-focus" aria-label="Your Account" aria-haspopup="true" aria-controls="user-menu" aria-expanded="false">
<span class="image icon" aria-hidden="true">
<img class="has-body-background-medium is-rounded" data-profile-property="avatarUrl">
</span>
<span class="is-truncated" data-profile-property="userName"></span>
</button>
<div class="dropdown-menu box" id="user-menu" role="menu">
<div class="media is-user-dir">
<div class="media-left">
<span class="image is-64x64" aria-hidden="true">
<img class="has-body-background-medium is-rounded" data-profile-property="avatarUrl">
</span>
</div>
<div class="media-content">
<p class="title has-margin-top-small">
<span class="is-truncated" style="max-width: 200px" data-profile-property="userName"></span>
</p>
<p class="subtitle">
<span class="is-truncated" style="max-width: 200px" data-profile-property="upn"></span>
</p>
</div>
</div>
<ul class="is-unstyled has-margin-none">
<li><a href="/profile" data-profile-property="profileUrl">Profile</a></li>
<li><a class="docs-sign-out" href="#">Sign out</a></li>
</ul>
</div>
</div>
</li>
</ul>
<button type="button" class="contents-button" aria-label="Contents" data-bi-name="contents-expand-">
<span class="docon docon-editor-list-bullet"></span><span>Contents</span>
</button>
</div>
</div>
<div id="disclaimer-holder" class="disclaimer-holder"></div>
</div>
<div class="mainContainer uhf-container has-top-padding has-default-focus" data-bi-name="body">
<div class="columns ">
<section class="primary-holder column is-two-thirds-tablet is-three-quarters-desktop">
<div class="columns ">
<div id="page-actions" class="right-container column is-one-quarter is-one-fifth-desktop is-hidden-mobile is-hidden-tablet-only" data-bi-name="pageactions" role="complementary" aria-label="Page Actions">
<nav id="side-doc-outline" class="doc-outline" data-bi-name="intopic toc" role="navigation" aria-label="On page navigation">
<h3>In this article</h3>
</nav>
</div>
<div id="main-column" class="column is-full is-four-fifths-desktop ">
<main id="main" role="main" class="content" data-bi-name="content" lang="en-us" dir="ltr">
<h1 id="exchange-server-build-numbers-and-release-dates" sourcefile="ExchangeServer/new-features/build-numbers-and-release-dates.md" sourcestartlinenumber="15">Exchange Server build numbers and release dates</h1>
<ul class="metadata page-metadata" data-bi-name="page info" lang="en-us" dir="ltr">
<li class="displayDate loading">
<span aria-hidden="true" class="docon docon-calendar"></span>
<time role="presentation" datetime="2018-11-05T18:42:20.908Z" data-article-date-source="git">11/5/2018</time>
</li>
<li class="readingTime">
<span aria-hidden="true" class="docon docon-clock"></span>
12 minutes to read
</li>
<li class="contributors-holder">
<span class="contributors-text">Contributors</span>
<ul class="contributors" data-bi-name="contributors">
<li><a href="https://github.com/chrisda" title="chrisda" data-bi-name="contributorprofile"><img src="https://docs.microsoft.com/_themes/docs.theme/master/en-us/_themes/images/contributor.svg" data-src="https://github.com/chrisda.png?size=32" alt="chrisda"></a></li>
</ul>
</li>
</ul>
<nav id="center-doc-outline" class="doc-outline is-hidden-desktop" data-bi-name="intopic toc" role="navigation" aria-label="On page navigation">
<h3>In this article</h3>
</nav>
<!-- <content> -->
<p>You can use the information in this topic to verify the version of Exchange that is running in your organization.</p>
<p>This topic is organized in sections that correspond to the major releases of Exchange. Each section lists build numbers for each Service Pack (SP), Cumulative Update (CU), or Update Rollup (RU) of the specific Exchange release.</p>
<p>Download links for the latest CU, RU, and SP for Exchange Server 2019, Exchange Server 2016, Exchange Server 2013, Exchange Server 2010, and Exchange Server 2007 are included.</p>
<p><strong>Note</strong>: In the following sections, RTM stands for release to manufacturing (the first version of the product).</p>
<h2 id="exchange-server-2019">Exchange Server 2019</h2>
<p>The table in this section provides build numbers and general release dates for each version of Microsoft Exchange Server 2019.</p>
<p>To view the build number of an Exchange 2019 server, run the following command in the Exchange Management Shell.</p>
<pre><code>Get-ExchangeServer | Format-List Name,Edition,AdminDisplayVersion
</code></pre>
<table>
<thead>
<tr>
<th style=""><strong>Product name</strong></th>
<th style=""><strong>Release date</strong></th>
<th style=""><strong>Build number (short format)</strong></th>
<th style=""><strong>Build number (long format)</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td style=""><a href="https://go.microsoft.com/fwlink/p/?linkId=195442" data-linktype="external">Exchange Server 2019 RTM</a></td>
<td style="">October 22, 2018</td>
<td style="">15.2.221.12</td>
<td style="">15.02.0221.012â</td>
</tr>
</tbody>
</table>
<h2 id="exchange-server-2016">Exchange Server 2016</h2>
<p>The table in this section provides build numbers and general release dates for each version of Microsoft Exchange Server 2016.</p>
<p>To view the build number of an Exchange 2016 server, run the following command in the Exchange Management Shell.</p>
<pre><code>Get-ExchangeServer | Format-List Name,Edition,AdminDisplayVersion
</code></pre>
<table>
<thead>
<tr>
<th style=""><strong>Product name</strong></th>
<th style=""><strong>Release date</strong></th>
<th style=""><strong>Build number (short format)</strong></th>
<th style=""><strong>Build number (long format)</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td style=""><a href="https://www.microsoft.com/download/details.aspx?id=57388" data-linktype="external">Exchange Server 2016 CU11</a></td>
<td style="">October 16, 2018</td>
<td style="">15.1.1591.10</td>
<td style="">15.01.1591.010</td>
</tr>
<tr>
<td style=""><a href="https://go.microsoft.com/fwlink/p/?LinkId=2002912" data-linktype="external">Exchange Server 2016 CU10</a></td>
<td style="">June 19, 2018</td>
<td style="">15.1.1531.3</td>
<td style="">15.01.1531.003</td>
</tr>
<tr>
<td style="">Exchange Server 2016 CU9</td>
<td style="">March 20, 2018</td>
<td style="">15.1.1466.3</td>
<td style="">15.01.1466.003</td>
</tr>
<tr>
<td style="">Exchange Server 2016 CU8</td>
<td style="">December 19, 2017</td>
<td style="">15.1.1415.2</td>
<td style="">15.01.1415.002</td>
</tr>
<tr>
<td style="">Exchange Server 2016 CU7</td>
<td style="">September 19, 2017</td>
<td style="">15.1.1261.35</td>
<td style="">15.01.1261.035</td>
</tr>
<tr>
<td style="">Exchange Server 2016 CU6</td>
<td style="">June 27, 2017</td>
<td style="">15.1.1034.26</td>
<td style="">15.01.1034.026</td>
</tr>
<tr>
<td style="">Exchange Server 2016 CU5</td>
<td style="">March 21, 2017</td>
<td style="">15.1.845.34</td>
<td style="">15.01.0845.034</td>
</tr>
<tr>
<td style="">Exchange Server 2016 CU4</td>
<td style="">December 13, 2016</td>
<td style="">15.1.669.32</td>
<td style="">15.01.0669.032</td>
</tr>
<tr>
<td style="">Exchange Server 2016 CU3</td>
<td style="">September 20, 2016</td>
<td style="">15.1.544.27</td>
<td style="">15.01.0544.027</td>
</tr>
<tr>
<td style="">Exchange Server 2016 CU2</td>
<td style="">June 21, 2016</td>
<td style="">15.1.466.34</td>
<td style="">15.01.0466.034</td>
</tr>
<tr>
<td style="">Exchange Server 2016 CU1</td>
<td style="">March 15, 2016</td>
<td style="">15.1.396.30</td>
<td style="">15.01.0396.030</td>
</tr>
<tr>
<td style="">Exchange Server 2016 RTM</td>
<td style="">October 1, 2015</td>
<td style="">15.1.225.42</td>
<td style="">15.01.0225.042</td>
</tr>
<tr>
<td style="">Exchange Server 2016 Preview</td>
<td style="">July 22, 2015</td>
<td style="">15.1.225.16</td>
<td style="">15.01.0225.016</td>
</tr>
</tbody>
</table>
<h2 id="exchange-server-2013">Exchange Server 2013</h2>
<p>The table in this section provides build numbers and general release dates for each version of Microsoft Exchange Server 2013.</p>
<p>To view the build number of an Exchange 2013 server, run the following command in the Exchange Management Shell.</p>
<pre><code>Get-ExchangeServer | Format-List Name,Edition,AdminDisplayVersion
</code></pre>
<table>
<thead>
<tr>
<th style=""><strong>Product name</strong></th>
<th style=""><strong>Release date</strong></th>
<th style=""><strong>Build number (short format)</strong></th>
<th style=""><strong>Build number (long format)</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td style=""><a href="https://go.microsoft.com/fwlink/p/?LinkId=2003011" data-linktype="external">Exchange Server 2013 CU21</a></td>
<td style="">June 19, 2018</td>
<td style="">15.0.1395.4</td>
<td style="">15.00.1395.004</td>
</tr>
<tr>
<td style="">Exchange Server 2013 CU20</td>
<td style="">March 20, 2018</td>
<td style="">15.0.1367.3</td>
<td style="">15.00.1367.003</td>
</tr>
<tr>
<td style="">Exchange Server 2013 CU19</td>
<td style="">December 19, 2017</td>
<td style="">15.0.1365.1</td>
<td style="">15.00.1365.001</td>
</tr>
<tr>
<td style="">Exchange Server 2013 CU18</td>
<td style="">September 19, 2017</td>
<td style="">15.0.1347.2</td>
<td style="">15.00.1347.002</td>
</tr>
<tr>
<td style="">Exchange Server 2013 CU17</td>
<td style="">June 27, 2017</td>
<td style="">15.0.1320.4</td>
<td style="">15.00.1320.004</td>
</tr>
<tr>
<td style="">Exchange Server 2013 CU16</td>
<td style="">March 21, 2017</td>
<td style="">15.0.1293.2</td>
<td style="">15.00.1293.002</td>
</tr>
<tr>
<td style="">Exchange Server 2013 CU15</td>
<td style="">December 13, 2016</td>
<td style="">15.0.1263.5</td>
<td style="">15.00.1263.005</td>
</tr>
<tr>
<td style="">Exchange Server 2013 CU14</td>
<td style="">September 20, 2016</td>
<td style="">15.0.1236.3</td>
<td style="">15.00.1236.003</td>
</tr>
<tr>
<td style="">Exchange Server 2013 CU13</td>
<td style="">June 21, 2016</td>
<td style="">15.0.1210.3</td>
<td style="">15.00.1210.003</td>
</tr>
<tr>
<td style="">Exchange Server 2013 CU12</td>
<td style="">March 15, 2016</td>
<td style="">15.0.1178.4</td>
<td style="">15.00.1178.004</td>
</tr>
<tr>
<td style="">Exchange Server 2013 CU11</td>
<td style="">December 15, 2015</td>
<td style="">15.0.1156.6</td>
<td style="">15.00.1156.006</td>
</tr>
<tr>
<td style="">Exchange Server 2013 CU10</td>
<td style="">September 15, 2015</td>
<td style="">15.0.1130.7</td>
<td style="">15.00.1130.007</td>
</tr>
<tr>
<td style="">Exchange Server 2013 CU9</td>
<td style="">June 17, 2015</td>
<td style="">15.0.1104.5</td>
<td style="">15.00.1104.005</td>
</tr>
<tr>
<td style="">Exchange Server 2013 CU8</td>
<td style="">March 17, 2015</td>
<td style="">15.0.1076.9</td>
<td style="">15.00.1076.009</td>
</tr>
<tr>
<td style="">Exchange Server 2013 CU7</td>
<td style="">December 9, 2014</td>
<td style="">15.0.1044.25</td>
<td style="">15.00.1044.025</td>
</tr>
<tr>
<td style="">Exchange Server 2013 CU6</td>
<td style="">August 26, 2014</td>
<td style="">15.0.995.29</td>
<td style="">15.00.0995.029</td>
</tr>
<tr>
<td style="">Exchange Server 2013 CU5</td>
<td style="">May 27, 2014</td>
<td style="">15.0.913.22</td>
<td style="">15.00.0913.022</td>
</tr>
<tr>
<td style="">Exchange Server 2013 SP1</td>
<td style="">February 25, 2014</td>
<td style="">15.0.847.32</td>
<td style="">15.00.0847.032</td>
</tr>
<tr>
<td style="">Exchange Server 2013 CU3</td>
<td style="">November 25, 2013</td>
<td style="">15.0.775.38</td>
<td style="">15.00.0775.038</td>
</tr>
<tr>
<td style="">Exchange Server 2013 CU2</td>
<td style="">July 9, 2013</td>
<td style="">15.0.712.24</td>
<td style="">15.00.0712.024</td>
</tr>
<tr>
<td style="">Exchange Server 2013 CU1</td>
<td style="">April 2, 2013</td>
<td style="">15.0.620.29</td>
<td style="">15.00.0620.029</td>
</tr>
<tr>
<td style="">Exchange Server 2013 RTM</td>
<td style="">December 3, 2012</td>
<td style="">15.0.516.32</td>
<td style="">15.00.0516.032</td>
</tr>
</tbody>
</table>
<h2 id="exchange-server-2010">Exchange Server 2010</h2>
<p>The tables in this section provide build numbers and general release dates for each version of Microsoft Exchange Server 2010.</p>
<p>To view the build number of an Exchange 2010 server, run the following command in the Exchange Management Shell:</p>
<pre><code>Get-Command ExSetup | ForEach {$_.FileVersionInfo}
</code></pre>
<h3 id="exchange-server-2010-sp3-build-numbers">Exchange Server 2010 SP3 build numbers</h3>
<table>
<thead>
<tr>
<th style=""><strong>Product name</strong></th>
<th style=""><strong>Release date</strong></th>
<th style=""><strong>Build number (short format)</strong></th>
<th style=""><strong>Build number (long format)</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td style=""><a href="https://www.microsoft.com/download/details.aspx?id=57306" data-linktype="external">Update Rollup 24 for Exchange Server 2010 SP3</a></td>
<td style="">September 5, 2018</td>
<td style="">14.3.419.0</td>
<td style="">14.03.0419.000</td>
</tr>
<tr>
<td style=""><a href="https://www.microsoft.com/download/details.aspx?id=57219" data-linktype="external">Update Rollup 23 for Exchange Server 2010 SP3</a></td>
<td style="">August 13, 2018</td>
<td style="">14.3.417.1</td>
<td style="">14.03.0417.001</td>
</tr>
<tr>
<td style=""><a href="https://go.microsoft.com/fwlink/p/?LinkId=2003010" data-linktype="external">Update Rollup 22 for Exchange Server 2010 SP3</a></td>
<td style="">June 19, 2018</td>
<td style="">14.3.411.0</td>
<td style="">14.03.0411.000</td>
</tr>
<tr>
<td style="">Update Rollup 21 for Exchange Server 2010 SP3</td>
<td style="">May 7, 2018</td>
<td style="">14.3.399.2</td>
<td style="">14.03.0399.002</td>
</tr>
<tr>
<td style="">Update Rollup 20 for Exchange Server 2010 SP3</td>
<td style="">March 5, 2018</td>
<td style="">14.3.389.1</td>
<td style="">14.03.0389.001</td>
</tr>
<tr>
<td style="">Update Rollup 19 for Exchange Server 2010 SP3</td>
<td style="">December 19, 2017</td>
<td style="">14.3.382.0</td>
<td style="">14.03.0382.000</td>
</tr>
<tr>
<td style="">Update Rollup 18 for Exchange Server 2010 SP3</td>
<td style="">July 11, 2017</td>
<td style="">14.3.361.1</td>
<td style="">14.03.0361.001</td>
</tr>
<tr>
<td style="">Update Rollup 17 for Exchange Server 2010 SP3</td>
<td style="">March 21, 2017</td>
<td style="">14.3.352.0</td>
<td style="">14.03.0352.000</td>
</tr>
<tr>
<td style="">Update Rollup 16 for Exchange Server 2010 SP3</td>
<td style="">December 13, 2016</td>
<td style="">14.3.336.0</td>
<td style="">14.03.0336.000</td>
</tr>
<tr>
<td style="">Update Rollup 15 for Exchange Server 2010 SP3</td>
<td style="">September 20, 2016</td>
<td style="">14.3.319.2</td>
<td style="">14.03.0319.002</td>
</tr>
<tr>
<td style="">Update Rollup 14 for Exchange Server 2010 SP3</td>
<td style="">June 21, 2016</td>
<td style="">14.3.301.0</td>
<td style="">14.03.0301.000</td>
</tr>
<tr>
<td style="">Update Rollup 13 for Exchange Server 2010 SP3</td>
<td style="">March 15, 2016</td>
<td style="">14.3.294.0</td>
<td style="">14.03.0294.000</td>
</tr>
<tr>
<td style="">Update Rollup 12 for Exchange Server 2010 SP3</td>
<td style="">December 15, 2015</td>
<td style="">14.3.279.2</td>
<td style="">14.03.0279.002</td>
</tr>
<tr>
<td style="">Update Rollup 11 for Exchange Server 2010 SP3</td>
<td style="">September 15, 2015</td>
<td style="">14.3.266.2</td>
<td style="">14.03.0266.002</td>
</tr>
<tr>
<td style="">Update Rollup 10 for Exchange Server 2010 SP3</td>
<td style="">June 17, 2015</td>
<td style="">14.3.248.2</td>
<td style="">14.03.0248.002</td>
</tr>
<tr>
<td style="">Update Rollup 9 for Exchange Server 2010 SP3</td>
<td style="">March 17, 2015</td>
<td style="">14.3.235.1</td>
<td style="">14.03.0235.001</td>
</tr>
<tr>
<td style="">Update Rollup 8 v2 for Exchange Server 2010 SP3</td>
<td style="">December 12, 2014</td>
<td style="">14.3.224.2</td>
<td style="">14.03.0224.002</td>
</tr>
<tr>
<td style="">Update Rollup 8 v1 for Exchange Server 2010 SP3 (<a href="https://go.microsoft.com/fwlink/p/?LinkId=518202" data-linktype="external">recalled</a>)</td>
<td style="">December 9, 2014</td>
<td style="">14.3.224.1</td>
<td style="">14.03.0224.001</td>
</tr>
<tr>
<td style="">Update Rollup 7 for Exchange Server 2010 SP3</td>
<td style="">August 26, 2014</td>
<td style="">14.3.210.2</td>
<td style="">14.03.0210.002</td>
</tr>
<tr>
<td style="">Update Rollup 6 for Exchange Server 2010 SP3</td>
<td style="">May 27, 2014</td>
<td style="">14.3.195.1</td>
<td style="">14.03.0195.001</td>
</tr>
<tr>
<td style="">Update Rollup 5 for Exchange Server 2010 SP3</td>
<td style="">February 24, 2014</td>
<td style="">14.3.181.6</td>
<td style="">14.03.0181.006</td>
</tr>
<tr>
<td style="">Update Rollup 4 for Exchange Server 2010 SP3</td>
<td style="">December 9, 2013</td>
<td style="">14.3.174.1</td>
<td style="">14.03.0174.001</td>
</tr>
<tr>
<td style="">Update Rollup 3 for Exchange Server 2010 SP3</td>
<td style="">November 25, 2013</td>
<td style="">14.3.169.1</td>
<td style="">14.03.0169.001</td>
</tr>
<tr>
<td style="">Update Rollup 2 for Exchange Server 2010 SP3</td>
<td style="">August 8, 2013</td>
<td style="">14.3.158.1</td>
<td style="">14.03.0158.001</td>
</tr>
<tr>
<td style="">Update Rollup 1 for Exchange Server 2010 SP3</td>
<td style="">May 29, 2013</td>
<td style="">14.3.146.0</td>
<td style="">14.03.0146.000</td>
</tr>
<tr>
<td style="">Exchange Server 2010 SP3</td>
<td style="">February 12, 2013</td>
<td style="">14.3.123.4</td>
<td style="">14.03.0123.004</td>
</tr>
</tbody>
</table>
<h3 id="build-numbers-for-previous-releases-of-exchange-server-2010">Build numbers for previous releases of Exchange Server 2010</h3>
<table>
<thead>
<tr>
<th style=""><strong>Product name</strong></th>
<th style=""><strong>Release date</strong></th>
<th style=""><strong>Build number (short format)</strong></th>
<th style=""><strong>Build number (long format)</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td style="">Update Rollup 8 for Exchange Server 2010 SP2</td>
<td style="">December 9, 2013</td>
<td style="">14.2.390.3</td>
<td style="">14.02.0390.003</td>
</tr>
<tr>
<td style="">Update Rollup 7 for Exchange Server 2010 SP2</td>
<td style="">August 3, 2013</td>
<td style="">14.2.375.0</td>
<td style="">14.02.0375.000</td>
</tr>
<tr>
<td style="">Update Rollup 6 Exchange Server 2010 SP2</td>
<td style="">February 12, 2013</td>
<td style="">14.2.342.3</td>
<td style="">14.02.0342.003</td>
</tr>
<tr>
<td style="">Update Rollup 5 v2 for Exchange Server 2010 SP2</td>
<td style="">December 10, 2012</td>
<td style="">14.2.328.10</td>
<td style="">14.02.0328.010</td>
</tr>
<tr>
<td style="">Update Rollup 5 for Exchange Server 2010 SP2</td>
<td style="">November 13, 2012</td>
<td style="">14.3.328.5</td>
<td style="">14.03.0328.005</td>
</tr>
<tr>
<td style="">Update Rollup 4 v2 for Exchange Server 2010 SP2</td>
<td style="">October 9, 2012</td>
<td style="">14.2.318.4</td>
<td style="">14.02.0318.004</td>
</tr>
<tr>
<td style="">Update Rollup 4 for Exchange Server 2010 SP2</td>
<td style="">August 13, 2012</td>
<td style="">14.2.318.2</td>
<td style="">14.02.0318.002</td>
</tr>
<tr>
<td style="">Update Rollup 3 for Exchange Server 2010 SP2</td>
<td style="">May 29, 2012</td>
<td style="">14.2.309.2</td>
<td style="">14.02.0309.002</td>
</tr>
<tr>
<td style="">Update Rollup 2 for Exchange Server 2010 SP2</td>
<td style="">April 16, 2012</td>
<td style="">14.2.298.4</td>
<td style="">14.02.0298.004</td>
</tr>
<tr>
<td style="">Update Rollup 1 for Exchange Server 2010 SP2</td>
<td style="">February 13, 2012</td>
<td style="">14.2.283.3</td>
<td style="">14.02.0283.003</td>
</tr>
<tr>
<td style="">Exchange Server 2010 SP2</td>
<td style="">December 4, 2011</td>
<td style="">14.2.247.5</td>
<td style="">14.02.0247.005</td>
</tr>
<tr>
<td style=""></td>
<td style=""></td>
<td style=""></td>
<td style=""></td>
</tr>
<tr>
<td style="">Update Rollup 8 for Exchange Server 2010 SP1</td>
<td style="">December 10, 2012</td>
<td style="">14.1.438.0</td>
<td style="">14.01.0438.000</td>
</tr>
<tr>
<td style="">Update Rollup 7 v3 for Exchange Server 2010 SP1</td>
<td style="">November 13, 2012</td>
<td style="">14.1.421.3</td>
<td style="">14.01.0421.003</td>
</tr>
<tr>
<td style="">Update Rollup 7 v2 for Exchange Server 2010 SP1</td>
<td style="">October 10, 2012</td>
<td style="">14.1.421.2</td>
<td style="">14.01.0421.002</td>
</tr>
<tr>
<td style="">Update Rollup 7 for Exchange Server 2010 SP1</td>
<td style="">August 8, 2012</td>
<td style="">14.1.421.0</td>
<td style="">14.01.0421.000</td>
</tr>
<tr>
<td style="">Update Rollup 6 for Exchange Server 2010 SP1</td>
<td style="">October 27, 2011</td>
<td style="">14.1.355.2</td>
<td style="">14.01.0355.002</td>
</tr>
<tr>
<td style="">Update Rollup 5 for Exchange Server 2010 SP1</td>
<td style="">August 23, 2011</td>
<td style="">14.1.339.1</td>
<td style="">14.01.0339.001</td>
</tr>
<tr>
<td style="">Update Rollup 4 for Exchange Server 2010 SP1</td>
<td style="">July 27, 2011</td>
<td style="">14.1.323.6</td>
<td style="">14.01.0323.006</td>
</tr>
<tr>
<td style="">Update Rollup 3 for Exchange Server 2010 SP1</td>
<td style="">April 6, 2011</td>
<td style="">14.1.289.7</td>
<td style="">14.01.0289.007</td>
</tr>
<tr>
<td style="">Update Rollup 2 for Exchange Server 2010 SP1</td>
<td style="">December 9, 2010</td>
<td style="">14.1.270.1</td>
<td style="">14.01.0270.001</td>
</tr>
<tr>
<td style="">Update Rollup 1 for Exchange Server 2010 SP1</td>
<td style="">October 4, 2010</td>
<td style="">14.1.255.2</td>
<td style="">14.01.0255.002</td>
</tr>
<tr>
<td style="">Exchange Server 2010 SP1</td>
<td style="">August 23, 2010</td>
<td style="">14.1.218.15</td>
<td style="">14.01.0218.015</td>
</tr>
<tr>
<td style=""></td>
<td style=""></td>
<td style=""></td>
<td style=""></td>
</tr>
<tr>
<td style="">Update Rollup 5 for Exchange Server 2010</td>
<td style="">December 13, 2010</td>
<td style="">14.0.726.0</td>
<td style="">14.00.0726.000</td>
</tr>
<tr>
<td style="">Update Rollup 4 for Exchange Server 2010</td>
<td style="">June 10, 2010</td>
<td style="">14.0.702.1</td>
<td style="">14.00.0702.001</td>
</tr>
<tr>
<td style="">Update Rollup 3 for Exchange Server 2010</td>
<td style="">April 13, 2010</td>
<td style="">14.0.694.0</td>
<td style="">14.00.0694.000</td>
</tr>
<tr>
<td style="">Update Rollup 2 for Exchange Server 2010</td>
<td style="">March 4, 2010</td>
<td style="">14.0.689.0</td>
<td style="">14.00.0689.000</td>
</tr>
<tr>
<td style="">Update Rollup 1 for Exchange Server 2010</td>
<td style="">December 9, 2009</td>
<td style="">14.0.682.1</td>
<td style="">14.00.0682.001</td>
</tr>
<tr>
<td style="">Exchange Server 2010 RTM</td>
<td style="">November 9, 2009</td>
<td style="">14.0.639.21</td>
<td style="">14.00.0639.021</td>
</tr>
</tbody>
</table>
<h2 id="exchange-server-2007">Exchange Server 2007</h2>
<p>The tables in this section provide build numbers and general release dates for each version of Microsoft Exchange Server 2007.</p>
<p><strong>Note</strong>: The version information for Exchange Server 2007 SP1 is displayed correctly in the Exchange Management Console, in the Exchange Management Shell, and in the <strong>About Exchange Server 2007 Help</strong> dialog box. However, after you apply Exchange 2007 SP1 to an Edge Transport server that's running the RTM version of Exchange 2007, the version information for the Edge Transport server isnât updated in the Exchange Management Console unless the Edge Transport server is resubscribed to the Active Directory site. This is because the Edge Transport server doesnât directly update Active Directory by using any configuration information. Instead, the version information for Edge Transport servers is recorded in Active Directory during the creation of an Edge Subscription.</p>
<p>To view the build number of an Exchange 2007 server, run the following command in the Exchange Management Shell:</p>
<pre><code>Get-Command ExSetup | ForEach {$_.FileVersionInfo}
</code></pre>
<table>
<thead>
<tr>
<th style=""><strong>Product name</strong></th>
<th style=""><strong>Release date</strong></th>
<th style=""><strong>Build number (short format)</strong></th>
<th style=""><strong>Build number (long format)</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td style="">Update Rollup 23 for Exchange Server 2007 SP3</td>
<td style="">March 21, 2017</td>
<td style="">8.3.517.0</td>
<td style="">8.03.0517.000</td>
</tr>
<tr>
<td style="">Update Rollup 22 for Exchange Server 2007 SP3</td>
<td style="">December 13, 2016</td>
<td style="">8.3.502.0</td>
<td style="">8.03.0502.000</td>
</tr>
<tr>
<td style="">Update Rollup 21 for Exchange Server 2007 SP3</td>
<td style="">September 20, 2016</td>
<td style="">8.3.485.1</td>
<td style="">8.03.0485.001</td>
</tr>
<tr>
<td style="">Update Rollup 20 for Exchange Server 2007 SP3</td>
<td style="">June 21, 2016</td>
<td style="">8.3.468.0</td>
<td style="">8.03.0468.000</td>
</tr>
<tr>
<td style="">Update Rollup 19 forExchange Server 2007 SP3</td>
<td style="">March 15, 2016</td>
<td style="">8.3.459.0</td>
<td style="">8.03.0459.000</td>
</tr>
<tr>
<td style="">Update Rollup 18 forExchange Server 2007 SP3</td>
<td style="">December, 2015</td>
<td style="">8.3.445.0</td>
<td style="">8.03.0445.000</td>
</tr>
<tr>
<td style="">Update Rollup 17 forExchange Server 2007 SP3</td>
<td style="">June 17, 2015</td>
<td style="">8.3.417.1</td>
<td style="">8.03.0417.001</td>
</tr>
<tr>
<td style="">Update Rollup 16 for Exchange Server 2007 SP3</td>
<td style="">March 17, 2015</td>
<td style="">8.3.406.0</td>
<td style="">8.03.0406.000</td>
</tr>
<tr>
<td style="">Update Rollup 15 for Exchange Server 2007 SP3</td>