博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Exchange Server 2016预览版自动化部署及简单体验
阅读量:6534 次
发布时间:2019-06-24

本文共 3834 字,大约阅读时间需要 12 分钟。

前两天微软发布了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

添加Exchange DNS记录:

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

安装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

Exchange加域

离线安装.NET 4.5.2

UCWA 4.0

申请证书:

安装Exchange 2016:

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

//配置发送连接器:

New-SendConnector -Internet -Name SendToInternet -AddressSpaces *

//定义变量:

$HostName = "EXCH"

$SvrAddress = "mail.exchange.com"

//配置自动发现地址

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

//配置ECP内外部地址

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

//配置EWS内外部地址

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

//配置ActiveSync内外部地址

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

//配置OAB内外部地址

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

//配置OWA内外部地址

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

//配置PowerShell内外部地址

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

//配置证书:

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

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

//开启OutlookAnywhere:

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

//新建邮箱数据库

$DbName= "EXCH-DB-01"

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

Restart-Service MSExchangeIS

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

//配置邮箱配额

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

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

转载地址:http://qiwdo.baihongyu.com/

你可能感兴趣的文章
debian中安装和编译ipvsadm问题
查看>>
Android ScrollView滑动事件和子控件点击事件冲突
查看>>
信息安全领域内的风险损失价值估算
查看>>
GHOST系统后,蓝屏代码为0x0000007B解决方法
查看>>
基于业务单元的开发与部署模式
查看>>
Mysql 分区技术一理论
查看>>
Spring Boot(1) 使用Maven构建Spring Boot项目
查看>>
Android高手的六大境界
查看>>
Android Activity生命周期详解
查看>>
安全策略的制定企业经营的基础
查看>>
进制准换 base_convert()
查看>>
25个增强iOS应用程序性能的提示和技巧
查看>>
c语言学习三
查看>>
实验:CentOS下构建私有CA
查看>>
Linux下查看Tomcat的控制台输出信息
查看>>
第十一课 xshell实现linux与windows互文件、用户与密码的配置文件、用户和用户组的管理...
查看>>
jQuery EasyUI使用教程之使用虚拟滚动视图显示海量数据
查看>>
jQuery EasyUI使用教程之添加节点到树形菜单
查看>>
BCGControlBar中文教程之Ribbon Backstage视图(三)
查看>>
《Linux学习并不难》文件/目录管理(7):rmdir命令删除空目录
查看>>