Показаны сообщения с ярлыком exchange. Показать все сообщения
Показаны сообщения с ярлыком exchange. Показать все сообщения

26.9.18

Версии Exchange Server 2013 и 2016 с кумулятивными обновлениями

Exchange Server 2013

Product NameBuild Number
Date[mm/dd/yyyy]
KB
 Microsoft Exchange Server 2013 RTM 15.0.516.32 12/03/2012 
 Exchange Server 2013 Cumulative Update 1 (CU1) 15.0.620.29 04/02/2013 KB2816900 
 Exchange Server 2013 Cumulative Update 2 (CU2) 15.0.712.24 07/09/2013 KB2859928 
 Exchange Server 2013 Cumulative Update 3 (CU3) 15.0.775.38 11/25/2013 KB2892464 
 Exchange Server 2013 Service Pack 1 (SP1 aka CU4) 15.0.847.32 02/25/2014 KB2926248 
 Exchange Server 2013 Cumulative Update 5 (CU5) 15.0.913.22 05/27/2014 KB2936880 
 Exchange Server 2013 Cumulative Update 6 (CU6) 15.0.995.29 08/26/2014 KB2961810 
 Exchange Server 2013 Cumulative Update 7 (CU7) 15.0.1044.25 12/09/2014 KB2986485 
 Exchange Server 2013 Cumulative Update 8 (CU8) 15.0.1076.9 03/17/2015 KB3030080 
 Exchange Server 2013 Cumulative Update 9 (CU9) 15.0.1104.5 06/16/2015 KB3049849 
 Exchange Server 2013 Cumulative Update 10 (CU10) 15.0.1130.7 09/14/2015 KB3078678 
 Exchange Server 2013 Cumulative Update 11 (CU11) 15.0.1156.6 12/10/2015 KB3099522 
 Exchange Server 2013 Cumulative Update 12 (CU12) 15.0.1178.4 3/14/2016 KB3108023 
 Exchange Server 2013 Cumulative Update 13 (CU13) 15.0.1210.3 6/20/2016 KB3135743 
 Exchange Server 2013 Cumulative Update 14 (CU14) 15.0.1236.3 9/20/2016 KB3177670 
 Exchange Server 2013 Cumulative Update 15 (CU15) 15.0.1263.5 12/13/2016 KB3197044 
 Exchange Server 2013 Cumulative Update 16 (CU16) 15.0.1293.2 3/21/2017 KB4012112 
 Exchange Server 2013 Cumulative Update 17 (CU17) 15.0.1320.4 6/27/2017 KB4012114 
 Exchange Server 2013 Cumulative Update 18 (CU18) 15.0.1347.2 9/16/2017 KB4022631 
 Exchange Server 2013 Cumulative Update 19 (CU19) 15.0.1365.1 12/19/2017 KB4037224 
 Exchange Server 2013 Cumulative Update 20 (CU20) 15.0.1367.3 3/20/2018 KB4055221 
 Exchange Server 2013 Cumulative Update 21 (CU21) 15.0.1395.4 6/19/2018 ​KB4099855 
 Exchange Server 2013 Cumulative Update 22 (CU22) ​15.0.1473.3 ​2/12/2019 KB4345836 

Exchange Server 2016

Product NameBuild Number
Date[mm/dd/yyyy]
KB
 Exchange Server 2016 Preview 15.1.225.16 6/22/2015 
 Exchange Server 2016 RTM  15.1.225.42 10/01/2015
 Exchange Server 2016 Cumulative Update 1 (CU1) 15.1.396.30 3/14/2016 KB3134844 
 Exchange Server 2016 Cumulative Update 2 (CU2) 15.1.466.34 6/20/2016 KB3135742 
 Exchange Server 2016 Cumulative Update 3 (CU3) 15.1.544.27 9/20/2016 KB3152589 
 Exchange Server 2016 Cumulative Update 4 (CU4) 15.1.669.32 12/13/2016 KB3177106 
 Exchange Server 2016 Cumulative Update 5 (CU5) 15.1.845.34 3/21/2017 KB4012106 
 Exchange Server 2016 Cumulative Update 6 (CU6) 15.1.1034.26 6/27/2017 KB4012108 
 Exchange Server 2016 Cumulative Update 7 (CU7) 15.1.1261.35 9/16/2017 KB4018115 
 Exchange Server 2016 Cumulative Update 8 (CU8) 15.1.1415.2 12/17/2017 KB4035145 
 Exchange Server 2016 Cumulative Update 9 (CU9) 15.1.1466.3 3/20/2018 KB4055222 
 Exchange Server 2016 Cumulative Update 10 (CU10) 15.1.1531.3 6/19/2018 ​KB4099852 
 Exchange Server 2016 Cumulative Update 11 (CU11) 15.1.1591.01 10/16/2018 KB4134118 
 Exchange Server 2016 Cumulative Update 12 (CU12) 15.1.1713.5 ​2/12/2019 KB4471392 

Создать номер могут быть проверены с помощью командлета Get-ExchangeServer

Get-ExchangeServer | Select Name, AdminDisplayVersion
  • Создать номер могут быть проверены с ExSetup.exe сведения о версии файла также
Get-Command Exsetup.exe | ForEach{$_.FileVersionInfo}
Ниже команда будет дать подробную информацию о имени, домена, издание, fqdn, установленных ролей сервера, сайта и администратора отображаемое имя.

Get-ExchangeServer | fl name, domain, edition, fqdn, serverrole, site, admindisplayversion

Чтобы проверить сведения о версии файла ExSetup.exe на всех серверах Exchange удаленно, используйте ниже команду.

Get-ExchangeServer | Sort-Object Name | ForEach{ Invoke-Command -ComputerName $_.Name -ScriptBlock { Get-Command ExSetup.exe | ForEach{$_.FileVersionInfo } } } | Format-Table -Auto

В Exchange 2013 и Exchange 2016, вы также можете проверить сборки номера в Exchange администратор центра (EAC).

В EAC нажмите на категорию «серверы» на левой стороне и щелкните на панели «серверы».

https://social.technet.microsoft.com/wiki/contents/articles/15776.exchange-server-2013-and-2016-build-numbers-with-cumulative-updates.aspx

25.6.18

Outlook Web Access (OWA) and ActiveSync reporting using IIS logs


I was asked to report on how many people were still accessing a legacy Exchange server via Outlook Web Access for the purposes of retiring it permanently.  Here is a step by step walk through. Pasted commands may not work.  Please type directly into the cmd window!
  1. Locate your IIS logs on your exchange server.  Mine were stored in C:\inetpub\logs\LogFiles\W3SVC1.  For more help refer to this article.
  2. For this example we will be copying the logs we need locally to the C:\log directory.  This method could easily be adapted to use UNC paths but was not needed for my purposes.  IIS should create one log per day so copy the number of days you would like to report on to c:\log on your local machine.
  3. Download Log Parser 2.2 from the Microsoft website and install it to the default directory.
  4. Next we will use log parser to combine all of these logs into a single file.  Create a subdirectory under c:\log called mergedlog.  From the command line navigate to the log parser directory “C:\Program Files (x86)\Log Parser 2.2” and run the following command “logparser.exe -i:iisw3c “select * into c:\log\mergedlog\merge.log from c:\log\*” -o:csv”  This will create a single log file named merge.log and convert the data from iisw3c to csv format.
  5. Next we will need to run a command that will pull the information we are looking for out of the log.  Here are three examples that list User Name, Date, Time, IP, page accessed, and user agent. Each will output the results into a file named output.csv in the c:\log directory.
The first command looks for OWA access
LogParser -i:csv “SELECT cs-username, date, time, c-ip, cs-uri-stem, cs(User-Agent) FROM C:\log\mergedlog\merge.log TO C:\log\Output.csv WHERE cs-method LIKE ‘%get%’ and cs-uri-stem LIKE ‘%owa%’
This next command lists ActiveSync users
LogParser -i:csv “SELECT cs-username, date, time, c-ip, cs-uri-stem, cs(User-Agent) FROM C:\log\mergedlog\merge.log TO C:\log\Output.csv WHERE cs-method LIKE ‘%post%’ and cs-uri-stem LIKE ‘%Microsoft-Server-ActiveSync%’
Finally as a Bonus This one looks for Mac Office Users
LogParser -i:csv “SELECT cs-username, date, time, c-ip, cs-uri-stem, cs(User-Agent) FROM C:\log\mergedlog\merge.log TO C:\log\Output.csv WHERE cs-method LIKE ‘%post%’ and cs(user-agent) LIKE ’%Macoutlook%’

14.3.18

Как определить версию Exchange Server

Method 1. Use ADSIEdit.msc or LDP.exe

Move to the following location: 
"CN=ms-Exch-Schema-Version-Pt,CN=Schema,CN=Configuration,DC=domain,DC=local"

Then, review the current rangeUpper attribute. 

Method 2. Use the DSQuery command line tool

"dsquery * CN=ms-Exch-Schema-Version-Pt,cn=schema,cn=configuration,dc=domain,dc=local -scope base -attr rangeUpper


Method 3. Via Powershell

Get-ExchangeServer | fl name,edition,admindisplayversion


http://msexchangetechno.blogspot.ru/2013/03/how-to-find-exchange-server-version.html

20342B заметки...

(cas)Сервер клиентского доступа проксирует подключения
(mbx)  хранение бд, отправка
В dag можно объеденять 16 серверов
Exhange не устанавливать на DC
Кворум- голосование  по большинству.

(Количество севреров четное)Сервер- свидетель, на него ломятся 2 сервера echange, первый кто получает доступ тот лочит файл  появляется + 1 голос
Microsoft рекомендует держать 3 mbx сервера
Microsoft рекомендует не разделять роли. (mbx+cas)
Microsoft рекомендует двух юнитовые сервера, с 2 cpu + sas диски (8 штук) -данная конфигурация для 4000 ящиков, загруженность будет 60%
Microsoft рекомендует собирать диски в JBOD для Exhange.
Microsoft рекомендует настройки сети 1 GiB, лучше 10GiB, делать все на одном инетрфейсе.

Географически распределенные датацентры.
Если две площадки , нужно две записи A- autodiscovery
Smtp сессия длится 20 сек, для подтвержения доставки письма.

Важно понимание как будет распрделяться кворум.

Виртуализация Exchange
Имеет смысл, когда не нагружен до 60%
Нагруженность сервера exchange 11% на виртуальную машину.
DEP - включить в BIOS
Платформа для аппаратной виртуализации win2012r2
Microsoft рекомендует  Fixed VHD для Exchange
Иcпользовоать виртуализацию V2
Оперативная память должна быть Fixed
Если загрузка 70% нужно отключать hyper treding. (тестировать)
В продакшн системах снапшеты не работают.
Hyper-v использовать только для hyper-v другие сервисы не устанавливать.
Разноить
Отключть на виртуальных машинах time synchronization
Отключить live mirgation
Exchange не поддерживает hyper-v replica
6GB использовать на hyper-v
Echange load generator НЕ ИСПОЛЬЗОВАТЬ в production среде.
Jetstress имитирует нагрузку на потчовую систему.

Требования к виртуализации exchange


  1. Использование фиксированых жестких дисков
  2. Использование фиксированной памяти
  3. Обновление гипервизора
  4. Не использолвать snapshot
  5. Использовать гипервизоры hyper-v, vmare
  6. Отключить на виртуальной машине службу синхронизации в настройках hyper-v


15.2.18

Требования к Exchange

---CPU
2core (два ядра минимум для развретываения)+ 1 core per 1000 mailbox (Плюс по одному ядру на 1000 почтовых ящиков)
---Memory
8GB минимум для нормальной работы, + 5mb per mailbox на каждый почтовый ящик (с учетом в день 50 собщений /75kb)
---IOPS
на один почтовый ящик
(50 messages/75kb)
0.0625 iops
---
Exchange 2013 устанавливается только на 2008r2,2012,2012r2

Exchange нельзя устанавливать на контроллер домена.


https://technet.microsoft.com/ru-ru/library/bb691354(v=exchg.150).aspx

12.4.15

Как использовать Nslookup для проверки настройки записи MX

  1.  В командной строке набираем nslookup, и нажимаем ENTER.
  2. Указываем ip адрес    указываем имя или IP dns внешнего сервера, и жмем ENTER
  3. Пишем set q=MX,  жмем ENTER.
  4. Указываем имя домена, для которого нужно определить mx запись и жмем ENTER.
https://technet.microsoft.com/ru-ru/library/aa998082%28v=exchg.65%29.aspx

6.4.15

Подготовка развертывание exchange

Убедиться в отсутствии записей вида "cn=ms-exchange"


Нормальное состояние


Убдеиться в отстутствии группы microsoft exchange security groups