Exchange Server 2016预览版自动化部署及简单体验

前两天微软发布了Exchange Server 2016的预览版,今天有点时间就来跟大家分享一下,与2013的最大变化就是没有了前端,只剩下了邮箱服务器和边缘服务器,OWA界面更像O365或者Outlook.com的样子了,细节功能做了不少优化,废话不多说咱们就开始吧。


安装活动目录:

Install-WindowsFeature AD-Domain-Services,RSAT-ADDS,RSAT-DNS-Server

Import-Module ADDSDeployment

Install-ADDSForest -CreateDnsDelegation:$false -DatabasePath:"C:\Windows\NTDS" -LogPath "C:\Windows\NTDS" -SysvolPath "C:\Windows\SYSVOL" -DomainMode "Win2012R2" -DomainName "exchange.com" -DomainNetbiosName "exchange" -ForestMode "Win2012R2" -InstallDns:$true -NoRebootOnCompletion:$false -Force:$true

安装CA:

Install-WindowsFeature AD-Certificate,ADCS-Web-Enrollment,ADCS-Online-Cert,RSAT-Online-Responder,RSAT-ADCS-Mgmt

Import-Module ADCSDeployment

Install-AdcsCertificationAuthority -CACommonName "DEMO-Exchange-CA" -CAType EnterpriseRootCA -ValidityPeriod Years -ValidityPeriodUnits 10

Y

Install-AdcsWebEnrollment

Y

Install-ADcsOnlineResponder

Y

clip_image001

添加Exchange DNS记录:

Add-DnsServerResourceRecordA -IPv4Address <IP Address> -Name <Record Name> -ZoneName <Zone FQDN>

clip_image002

安装Exchange先决条件:

Install-WindowsFeature AS-HTTP-Activation, Desktop-Experience, NET-Framework-45-Features, RPC-over-HTTP-proxy, RSAT-Clustering, RSAT-Clustering-CmdInterface, RSAT-ADDS,RSAT-Clustering-Mgmt, RSAT-Clustering-PowerShell, Web-Mgmt-Console, WAS-Process-Model, Web-Asp-Net45, Web-Basic-Auth, Web-Client-Auth, Web-Digest-Auth, Web-Dir-Browsing, Web-Dyn-Compression, Web-Http-Errors, Web-Http-Logging, Web-Http-Redirect, Web-Http-Tracing, Web-ISAPI-Ext, Web-ISAPI-Filter, Web-Lgcy-Mgmt-Console, Web-Metabase, Web-Mgmt-Console, Web-Mgmt-Service, Web-Net-Ext45, Web-Request-Monitor, Web-Server, Web-Stat-Compression, Web-Static-Content, Web-Windows-Auth, Web-WMI, Windows-Identity-Foundation

clip_image003

clip_image004

Exchange加域

clip_image005

离线安装.NET 4.5.2

clip_image007

UCWA 4.0

clip_image008

申请证书:

clip_image009

clip_image010

clip_image011

安装Exchange 2016:

Setup.exe /mode:Install /role:Mailbox /OrganizationName:Exchange /IAcceptExchangeServerLicenseTerms

clip_image012

//配置发送连接器:

New-SendConnector -Internet -Name SendToInternet -AddressSpaces *

clip_image013

//定义变量:

$HostName = "EXCH"

$SvrAddress = "mail.exchange.com"

clip_image014

//配置自动发现地址

Set-ClientAccessServer -Identity $hostname -AutoDiscoverServiceInternalUri "https://$svraddress/autodiscover/autodiscover.xml"

clip_image015

//配置ECP内外部地址

Set-EcpVirtualDirectory "$HostName\ECP (Default Web Site)" -InternalUrl https://$svrAddress/ecp -ExternalUrl https://$svrAddress/ecp

clip_image016

//配置EWS内外部地址

Set-WebServicesVirtualDirectory "$HostName\EWS (Default Web Site)" -InternalUrl https://$svrAddress/EWS/Exchange.asmx -ExternalUrl https://$svrAddress/EWS/Exchange.asmx

clip_image017

//配置ActiveSync内外部地址

Set-ActiveSyncVirtualDirectory "$HostName\Microsoft-Server-ActiveSync (Default Web Site)" -InternalUrl https://$svrAddress/Microsoft-Server-ActiveSync -ExternalUrl https://$svrAddress/Microsoft-Server-ActiveSync

clip_image018

//配置OAB内外部地址

Set-OabVirtualDirectory "$HostName\OAB (Default Web Site)" -InternalUrl https://$svrAddress/OAB -ExternalUrl https://$svrAddress/OAB

clip_image019

//配置OWA内外部地址

Set-OwaVirtualDirectory "$HostName\OWA (Default Web Site)"-InternalUrl https://$svrAddress/OWA -ExternalUrl https://$svrAddress/OWA

clip_image020

//配置PowerShell内外部地址

Set-PowerShellVirtualDirectory "$HostName\PowerShell (Default Web Site)" -InternalUrl https://$svrAddress/PowerShell -ExternalUrl https://$svrAddress/PowerShell

clip_image021

//配置证书:

$cert=Get-ChildItem -Path cert:localmachine\my -DnsName mail.exchange.com

Enable-ExchangeCertificate -Thumbprint $cert.thumbprint -Services POP,IMAP,SMTP,IIS

clip_image022

//开启OutlookAnywhere:

Set-OutlookAnywhere -Identity "$hostname\rpc (Default Web Site)" -IISAuthenticationMethods Basic,NTLM

clip_image023

//新建邮箱数据库

$DbName= "EXCH-DB-01"

New-MailboxDatabase -Server $HostName -Name $DbName -EdbFilePath C:\ExchangeDatabases\$DbName\$DbName.edb -LogFolderPath C:\ExchangeDatabases\$DbName\Logs\

Restart-Service MSExchangeIS

clip_image024

稍等片刻,Get-Service看下服务状态。

clip_image025

//配置邮箱配额

Set-MailboxDatabase $DbName -IssueWarningQuota 7.0GB -ProhibitSendQuota 9.0GB -ProhibitSendReceiveQuota 10.0GB

clip_image026

基本配置已完成,下面来看看图:

clip_image027

clip_image028

clip_image029

clip_image030

clip_image031

clip_image032

clip_image033

clip_image034

clip_image035

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值