Exchange 2010安装各角色先决条件的Powershell

简介:

 Exchange 2010对活动目录的要求:

部署exchange 2010可参考的资源:

http://technet.microsoft.com/zh-cn/library/dd351084.aspx

1.       Schema master、domain control、GC(global catalog server) 都要求至少windows 2003sp1或更高(windows 2008 or R2)

2.       Exchange 2010各个角色对内存的需求:

详细参考:http://technet.microsoft.com/en-us/library/dd346700.aspx

3.       Exchange 2010安装先决条件

参考:http://technet.microsoft.com/zh-cn/library/bb691354.aspx

针对R2版本:先决条件参考下面URL:

http://technet.microsoft.com/zh-cn/library/bb691354.aspx#WS08R2

 开始安装先决条件所需的包:

2007 Office system 转换器:Microsoft 筛选包

http://www.microsoft.com/downloads/details.aspx?displaylang=zh-cn&FamilyID=60c92a37-719c-4077-b5c6-cac34f4227cc

1.       开启powershell控制台:执行命令:Import-Module ServerManager

2.       然后根据所装角色,添加相应的功能!

1)  安装CAS,HUB,MB角色时:

Import-Module ServerManager

Add-WindowsFeature NET-Framework,RSAT-ADDS,Web-Server,Web-Basic-Auth,Web-Windows-Auth,Web-Metabase,Web-Net-Ext,Web-Lgcy-Mgmt-Console,WAS-Process-Model,RSAT-Web-Server,Web-ISAPI-Ext,Web-Digest-Auth,Web-Dyn-Compression,NET-HTTP-Activation,RPC-Over-HTTP-Proxy -Restart

2)  安装CAS,HUB,MB,UM角色时:

Import-Module ServerManager

Add-WindowsFeature NET-Framework,RSAT-ADDS,Web-Server,Web-Basic-Auth,Web-Windows-Auth,Web-Metabase,Web-Net-Ext,Web-Lgcy-Mgmt-Console,WAS-Process-Model,RSAT-Web-Server,Web-ISAPI-Ext,Web-Digest-Auth,Web-Dyn-Compression,NET-HTTP-Activation,RPC-Over-HTTP-Proxy,Desktop-Experience -Restart

3)  安装CAS,HUB角色时

Import-Module ServerManager

 

Add-WindowsFeature NET-Framework,RSAT-ADDS,Web-Server,Web-Basic-Auth,Web-Windows-Auth,Web-Metabase,Web-Net-Ext,Web-Lgcy-Mgmt-Console,WAS-Process-Model,RSAT-Web-Server,Web-ISAPI-Ext,Web-Digest-Auth,Web-Dyn-Compression,NET-HTTP-Activation,RPC-Over-HTTP-Proxy -Restart

4)  安装HUB,MB角色时

Import-Module ServerManager

 

Add-WindowsFeature NET-Framework,RSAT-ADDS,Web-Server,Web-Basic-Auth,Web-Windows-Auth,Web-Metabase,Web-Net-Ext,Web-Lgcy-Mgmt-Console,WAS-Process-Model,RSAT-Web-Server -Restart

5)  安装CAS,MB角色时

Import-Module ServerManager

 

Add-WindowsFeature NET-Framework,RSAT-ADDS,Web-Server,Web-Basic-Auth,Web-Windows-Auth,Web-Metabase,Web-Net-Ext,Web-Lgcy-Mgmt-Console,WAS-Process-Model,RSAT-Web-Server,Web-ISAPI-Ext,Web-Digest-Auth,Web-Dyn-Compression,NET-HTTP-Activation,RPC-Over-HTTP-Proxy -Restart

6)  安装CAS角色时

Import-Module ServerManager

 

Add-WindowsFeature NET-Framework,RSAT-ADDS,Web-Server,Web-Basic-Auth,Web-Windows-Auth,Web-Metabase,Web-Net-Ext,Web-Lgcy-Mgmt-Console,WAS-Process-Model,RSAT-Web-Server,Web-ISAPI-Ext,Web-Digest-Auth,Web-Dyn-Compression,NET-HTTP-Activation,RPC-Over-HTTP-Proxy -Restart

7)  安装HUB或者MB角色时

Import-Module ServerManager

 

Add-WindowsFeature NET-Framework,RSAT-ADDS,Web-Server,Web-Basic-Auth,Web-Windows-Auth,Web-Metabase,Web-Net-Ext,Web-Lgcy-Mgmt-Console,WAS-Process-Model,RSAT-Web-Server -Restart

8)  安装UM角色时

Import-Module ServerManager

 

Add-WindowsFeature NET-Framework,RSAT-ADDS,Web-Server,Web-Basic-Auth,Web-Windows-Auth,Web-Metabase,Web-Net-Ext,Web-Lgcy-Mgmt-Console,WAS-Process-Model,RSAT-Web-Server,Desktop-Experience -Restart

9)  安装EDGE角色时

Import-Module ServerManager

 

Add-WindowsFeature NET-Framework,RSAT-ADDS,ADLDS -Restart

c.       安装完上述特性功能后,设置Net.Tcp Port Sharing Service服务启动类型为自动(透过命令或直接控制台修改都是OK的, (Set-Service NetTcpPortSharing -StartupType Automatic)


























本文转自李珣51CTO博客,原文链接: http://blog.51cto.com/lixun/922033,如需转载请自行联系原作者


相关文章
|
3月前
|
存储 运维 JavaScript
[运维笔记] PowerShell (模块).模块的查找、安装、卸载、更新、保存、发布
[运维笔记] PowerShell (模块).模块的查找、安装、卸载、更新、保存、发布
90 0
|
3月前
|
存储 Ubuntu Linux
windows可以安装Ubuntu,ubuntu上也可以安装Powershell
powerhsell除了可以在windows上使用外,还可以在Ubuntu上部署开发环境。下面介绍Ubuntu上安装powershell的方法。
50 0