This repository has been archived by the owner on Sep 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
THIS CODE IS MADE AVAILABLE AS IS, WITHOUT WARRANTY OF ANY KIND. THE ENTIRE | ||
RISK OF THE USE OR THE RESULTS FROM THE USE OF THIS CODE REMAINS WITH THE USER. | ||
|
||
Version 1.1, 2015-06-18 | ||
Version 1.2, 2015-06-29 | ||
|
||
Please send ideas, comments and suggestions to [email protected] | ||
|
||
|
@@ -27,6 +27,7 @@ | |
-------------------------------------------------------------------------------- | ||
1.0 Initial community release | ||
1.1 Domain Controller parameter added, permissions group copy added | ||
1.2 Move to FrontendTransport added, optional permission copy added, reset bindings added | ||
|
||
.PARAMETER ConnectorName | ||
Name of the connector the new IP addresses should be added to | ||
|
@@ -43,8 +44,26 @@ | |
.PARAMETER CopyToAllOther | ||
Switch to copy to all other Exchange servers | ||
|
||
.PARAMETER CopyPermissions | ||
Copy non inherited source receive AD permissions to target receive connector. Inherited permissions will not be copied | ||
|
||
.PARAMETER MoveToFrontend | ||
Change source connector transport role to FrontendTransport. This is required when you copy a receive connector from Exchange 2007 to Exchange 2013 | ||
|
||
.PARAMETER ResetBindings | ||
Do not copy bindings but reset receive connector network bindings to 0.0.0.0:25 | ||
|
||
.PARAMETER ViewEntireForest | ||
View entire Active Directory forest | ||
|
||
.EXAMPLE | ||
Copy Exchange 2013 receive connector nikos-one-RC2 from server MBX01 to server MBX2 | ||
.\Copy-ReceiveConnector.ps1 -SourceServer MBX01 -ConnectorName nikos-one-RC2 -TargetServer MBX2 -DomainController MYDC1.mcsmemail.de | ||
|
||
.EXAMPLE | ||
.\Copy-ReceiveConnector.ps1 -SourceServer MBX01 -ConnectorName nikos-one-RC1 -CopyToAllOther -DomainController MYDC1.mcsmemail.de | ||
Copy Exchange 2013 receive connector nikos-one-RC2 from server MBX01 to all other Exchange 2013 servers | ||
.\Copy-ReceiveConnector.ps1 -SourceServer MBX01 -ConnectorName nikos-one-RC1 -CopyToAllOther -DomainController MYDC1.mcsmemail.de | ||
|
||
.EXAMPLE | ||
Copy Exchange 2013 receive connector "nikos-two relay" from Exchange 2007 server MBX2007 to Exchange 2013 server MBX01 and reset network bindings | ||
.\Copy-ReceiveConnector.ps1 -SourceServer MBX2007 -ConnectorName "nikos-two relay" -TargetServer MBX01 -MoveToF |