The first routing group connector between Exchange 2010 and Exchange 2003 is created and configured during installation of the first Hub Transport server role in an existing Exchange organization. While this connector works, it is better to create a bidirectional RGC so mail flows back and forth over the same route. So... delete the one Exchange 2010 creates and then create a new one with this command:
New-RoutingGroupConnector -Name "Interop RGC" -SourceTransportServers "HUB1.domain.com" -TargetTransportServers "EX2003.domain.com" -Cost 10 -Bidirectional $true -PublicFolderReferralsEnabled $true
Once the Interop RGC is created, you can add addtional servers as required. Since the RGC is bidirectional, the name is going to be the same for the RGC in 2003 and 2010, so when adding additonal servers to the RGC, you will need to do it for both routing groups. Use the following commands:
For the 2010 connector:
set-RoutingGroupConnector -Identity "Exchange Routing Group (DWBGZMFD01QNBJR)\Interop RGC" -SourceTransportServers "HUB1.domain.com","HUB2.domain.com" -TargetTransportServers "EX2003.domain.com"
For the 2003 connector:
set-RoutingGroupConnector -Identity "First Routing Group\Interop RGC" -SourceTransportServers "EX2003.domain.com" -TargetTransportServers "HUB1.domain.com","HUB2.domain.com"
Tuesday, December 21, 2010
Wednesday, December 15, 2010
Re-balance active database copies across the DAG
Here is a handy batch file that will redistribute the active databases across the DAG:
cd C:\Program Files\Microsoft\Exchange Server\V14\Scripts
powershell -noexit -command "& ".\RedistributeActiveDatabases.ps1 -DagName DAG1 -BalanceDbsByActivationPreference -ShowFinalDatabaseDistribution -Confirm:$false" "
Copy and paste the above into notepad and save it as a batch file. Make sure you change the path for your install location as well as change the name of the DAG to match what is in your environment.
cd C:\Program Files\Microsoft\Exchange Server\V14\Scripts
powershell -noexit -command "& ".\RedistributeActiveDatabases.ps1 -DagName DAG1 -BalanceDbsByActivationPreference -ShowFinalDatabaseDistribution -Confirm:$false" "
Copy and paste the above into notepad and save it as a batch file. Make sure you change the path for your install location as well as change the name of the DAG to match what is in your environment.
Thursday, April 1, 2010
Change OWA timeouts
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSExchangeOWA
Name: PublicTimeout
Type: DWORD
Value: {value in minutes} (This value is 15 minutes by default)
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSExchangeOWA
Name: PrivateTimeout
Type: DWORD
Value: {value in minutes} (This value is 8 hours by default)
Name: PublicTimeout
Type: DWORD
Value: {value in minutes} (This value is 15 minutes by default)
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSExchangeOWA
Name: PrivateTimeout
Type: DWORD
Value: {value in minutes} (This value is 8 hours by default)
Thursday, February 11, 2010
Details of Exchange Enterprise CAL
Provides detail and pictures of Exchange Enterprise CAL features
http://chrislehr.com/2009/12/exchange-2010-enterprise-client-access.htm
http://chrislehr.com/2009/12/exchange-2010-enterprise-client-access.htm
Subscribe to:
Posts (Atom)