今天是第二次安装exchange服务器,针对的是AD+LYNC+EXCHANGE
前提条件:AD已经安装好,让exchange服务器加入到AD域,并且给echange服务器分配一个用户(exchangeadmin),赋予权限:domain admins,schema admins,enterprise admins,Organization Management(很关键),用exchangeadmin登陆
在安装exchange 2010服务器之前,需要
在powershell下执行以下命令:(参考http://andygao.blog.51cto.com/323260/339354)
1、安装 .NET Framework 3.5.1
Add-WindowsFeature NET-Framework
2、安装 RAST-ADDS
Add-WindowsFeature RSAT-ADDS
3、安装 IIS
Add-WindowsFeature Web-Server
Add-WindowsFeature Web-Basic-Auth
Add-WindowsFeature Web-Metabase
4、安装 Microsoft Filter Pack(筛选包)
从 http://www.microsoft.com/downloads/details.aspx?FamilyID=60c92a37-719c-4077-b5c6-cac34f4227cc&DisplayLang=zh-cn 下载 64-bit 版的 FilterPack,文件名为“FilterPackx64.exe”,
下载完毕后,双击运行安装完毕即可。
5、配置 Net.TCP Port Share Service 为自启动模式
Set-Service "NetTcpPortSharing" -StartupType Automatic
Start-Service "NetTcpPortSharing"
这个可以打开服务,将其设置成为开机自动启动
6、统一消息角色需要安装桌面体验(Desktop Experience)
Add-WindowsFeature Desktop-Experience
以下步骤按照网上的教程http://wangchunhai.blog.51cto.com/225186/231722
测试成功
转载于:https://blog.51cto.com/4396346/910319