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.
Move to FrontendTransport added, optional permission copy added, rese…
…t bindings added
- Loading branch information
Showing
1 changed file
with
64 additions
and
14 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 |
---|---|---|
|
@@ -7,7 +7,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] | ||
|
@@ -28,6 +28,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 | ||
|
@@ -44,11 +45,29 @@ | |
.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 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 -MoveToFrontend -ResetBindings -DomainController MYDC1.mcsmemail.de | ||
#> | ||
|
||
param( | ||
|
@@ -61,31 +80,54 @@ param( | |
[parameter(Mandatory=$true,HelpMessage='Domain Controller name')] | ||
[string] $DomainController = "", | ||
[parameter(Mandatory=$false,HelpMessage='Copy to all other Exchange servers')] | ||
[switch] $CopyToAllOther | ||
[switch] $CopyToAllOther, | ||
[parameter(Mandatory=$false,HelpMessage='Copy non inherited source receive AD permissions to target receive connector')] | ||
[switch] $CopyPermissions, | ||
[parameter(Mandatory=$false,HelpMessage='Move receive connector to FrontEnd transport (i.e. Exchange 2007 -> Exchange 2013)')] | ||
[switch] $MoveToFrontend, | ||
[parameter(Mandatory=$false,HelpMessage='Reset network bindings to listen on all adapters on port 25')] | ||
[switch] $ResetBindings, | ||
[parameter(Mandatory=$false,HelpMessage='View entire forest')] | ||
[switch] $ViewEntireForest | ||
) | ||
|
||
Set-StrictMode -Version Latest | ||
|
||
Import-Module ActiveDirectory | ||
|
||
$sourceRC = $null | ||
$secondsToWait = 60 | ||
|
||
### FUNCTIONS ----------------------------- | ||
|
||
function CopyToServer([string]$TargetServerName) { | ||
function CopyToServer { | ||
param( | ||
[string]$TargetServerName | ||
) | ||
|
||
$sourceRC = Get-ReceiveConnector -Server $SourceServer | ?{$_.Name -eq $ConnectorName} -ErrorAction SilentlyContinue | ||
|
||
$targetRC = Get-ReceiveConnector -Server $TargetServerName | ?{$_.Name -eq $ConnectorName} -ErrorAction SilentlyContinue | ||
|
||
if(($sourceRC -ne $null) -and ($targetRC -eq $null)){ | ||
Write-Verbose "Adding new receive connector to $serverName" | ||
|
||
Write-Host "Adding new receive connector $($ConnectorName) to $($TargetServerName)" | ||
|
||
# clear permission groups for Exchange Server 2013 (thanks to Jeffery Land, https://jefferyland.wordpress.com) | ||
$tempPermissionGroups = @($sourceRC.PermissionGroups) -split ", " | Select-String -Pattern "Custom" -NotMatch | ||
$temp = "$($tempPermissionGroups)" | ||
$sourceRC.PermissionGroups = $temp.Replace(" ", ", ") | ||
|
||
if($MoveToFrontend) { | ||
# Move receive connector to FrontEnd Transpport | ||
$sourceRC.TransportRole = "FrontendTransport" | ||
} | ||
|
||
if($ResetBindings) { | ||
# Reset network bindungs to listen on all adapters using port 25 | ||
$sourceRC.Bindings = "0.0.0.0:25" | ||
} | ||
|
||
# create new Receive Connector | ||
New-ReceiveConnector -Name $sourceRC.Name ` | ||
-TransportRole $sourceRC.TransportRole ` | ||
|
@@ -124,12 +166,20 @@ function CopyToServer([string]$TargetServerName) { | |
-SizeEnabled $sourceRC.SizeEnabled ` | ||
-TarpitInterval $sourceRC.TarpitInterval ` -EnhancedStatusCodesEnabled $sourceRC.EnhancedStatusCodesEnabled ` -Server $TargetServerName | ||
|
||
# fetch non inherited permissons from source connector | ||
$sourcePermissions = Get-ReceiveConnector -Identity $sourceRC | Get-ADPermission | where {$_.IsInherited -eq $false} | ||
if($CopyPermissions) { | ||
# fetch non inherited permissons from source connector | ||
$sourcePermissions = Get-ReceiveConnector -Identity $sourceRC | Get-ADPermission | where {$_.IsInherited -eq $false} | ||
|
||
# we wait some time for domain controller to get stuff done | ||
Write-Host "Wait $($secondsToWait) seconds for domain controller to update" | ||
Start-Sleep -Seconds $secondsToWait | ||
|
||
Write-Verbose "Adding AD permissions" | ||
|
||
# set access rights on target connector | ||
$sourcePermissions | foreach { | ||
Get-ReceiveConnector "$($TargetServerName)\$($sourceRC.Name)" | Add-ADPermission -DomainController $DomainController -User $_.User -Deny:$_.Deny -AccessRights $_.AccessRights -ExtendedRights $_.ExtendedRights | ||
# set access rights on target connector | ||
$sourcePermissions | foreach { | ||
Get-ReceiveConnector "$($TargetServerName)\$($sourceRC.Name)" -DomainController $DomainController | Add-ADPermission -DomainController $DomainController -User $_.User -Deny:$_.Deny -AccessRights $_.AccessRights -ExtendedRights $_.ExtendedRights | Out-Null | ||
} | ||
} | ||
} | ||
else { | ||
|
@@ -138,13 +188,13 @@ function CopyToServer([string]$TargetServerName) { | |
} | ||
|
||
function CopyToAllServers { | ||
Write-Verbose "Copy receive connector to all other Exchange servers" | ||
Write-Verbose "Copy receive connector to all other Exchange 2013 servers" | ||
|
||
$frontendServers = Get-ExchangeServer | ?{($_.AdminDisplayVersion.Major -eq 15) -and (([string]$_.ServerRole).Contains("ClientAccess")) -and ($_.Name -ne $SourceServer)} | ||
|
||
foreach($server in $frontendServers){ | ||
Write-Output "Adding to server: $server" | ||
CopyToServer $server | ||
CopyToServer -TargetServerName $server | ||
} | ||
|
||
Write-Verbose "Copying to all Exchange servers done" | ||
|
@@ -154,7 +204,7 @@ function CopyToAllServers { | |
|
||
if($ViewEntireForest) { | ||
Write-Verbose "Setting ADServerSettings -ViewEntireForest $true" | ||
Set-ADServerSettings -ViewEntireForets $true | ||
Set-ADServerSettings -ViewEntireForest $true | ||
} | ||
|
||
if((-not $CopyToAllOther) -and ($TargetServer -eq "")){ | ||
|
@@ -164,9 +214,9 @@ if((-not $CopyToAllOther) -and ($TargetServer -eq "")){ | |
} | ||
elseif($TargetServer -ne ""){ | ||
# Copy to a single Exchange server | ||
CopyToServer $TargetServer | ||
CopyToServer -TargetServerName $TargetServer | ||
} | ||
elseif($CopyToAllOther){ | ||
# Copy to all other Exchange servers | ||
# Copy to all other Exchange 2013 servers | ||
CopyToAllServers | ||
} | ||
|