Learn About Prerequisites For Exchange 2010 On Windows 2008 R2 And Details.

Asked By 0 points N/A Posted on -
qa-featured

My friend is worried about the details of prerequisites for exchange 2010 on windows 2008 r2. Can anyone please help me knowing these details. Reply ASAP.

SHARE
Answered By 0 points N/A #303824

Learn About Prerequisites For Exchange 2010 On Windows 2008 R2 And Details.

qa-featured

First way is to install office system converter and add windows components and features that are appropriate. Open powershell windows and run import-module server manager command. Set your net.tcp port service as it should start automatically if your server exchange has client access server. Again open powershell via taskbar icons and type the command set-service nettcpport sharing. Make sure the startup type is automatic. Hope this helps.

Answered By 590495 points N/A #306437

Learn About Prerequisites For Exchange 2010 On Windows 2008 R2 And Details.

qa-featured

If you have Windows Server 2008 R2, here’s how to install the prerequisites for Microsoft Exchange 2010. Open powershell and run the following command:

  • Import-Module ServerManager

If your server will have the typical installation of Hub Transport, Client Access, and the Mailbox roles, run the following command:

  • 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,Web-WMI –Restart

If your server will host the Client Access and Hub Transport server roles, run the following command:

  • 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,Web-WMI –Restart

If your server will host only the Mailbox role, run the following command:

  • 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

If the server will host the Unified Messaging role, run the following command:

  • 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

If the server will host the Edge Transport role, run the following command:

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

After restarting the system, run the following command to configure the Net.Tcp Port Sharing Service for Automatic startup:

  • Set-Service NetTcpPortSharing -StartupType Automatic

Note: before installing the prerequisites, you need to prepare your environment first. Visit Preparations for Exchange 2010 Prerequisites for more information.

Related Questions