Public/Migration/CloudData/Main/Add-X500FromContactToRemoteMailbox.ps1
using namespace System.Management.Automation.Host function Add-X500FromContactToRemoteMailbox { [CmdletBinding()] param ( [Parameter()] [switch] $DontViewEntireForest ) Get-PSSession | Remove-PSSession Connect-Exchange -DontViewEntireForest:$DontViewEntireForest -PromptConfirm Get-DestinationRecipientHash -Type RemoteMailbox $PoshPath = (Join-Path -Path ([Environment]::GetFolderPath('Desktop')) -ChildPath Posh365 ) if (-not (Test-Path $PoshPath)) { $null = New-Item $PoshPath -type Directory -Force:$true -ErrorAction SilentlyContinue } $TargetHash = Join-Path -Path $PoshPath -ChildPath 'TargetRemoteMailboxHash.xml' $SourceHash = Join-Path -Path $PoshPath -ChildPath 'SourceContactHash.xml' if (-not (Test-Path $TargetHash) -or -not (Test-Path $SourceHash)) { Write-Host "Missing one or both files" -ForegroundColor Red Write-Host "1) $TargetHash" -ForegroundColor Cyan Write-Host "2) $SourceHash" -ForegroundColor Cyan return } else { $Target = Import-Clixml $TargetHash $Source = Import-Clixml $SourceHash } $MatchingPrimaryCSV = Join-Path -Path $PoshPath -ChildPath ('REPORT SourceContact Matching TargetRemoteMailbox_{0}.csv' -f [DateTime]::Now.ToString('yyyy-MM-dd-hhmm')) $ResultObject = Compare-AddX500FromContact -Target $Target -Source $Source | Sort-Object TargetDisplayName $ResultObject | Out-GridView -Title "Results of comparison between source and target - Looking for (Source) ExternalEmailAddress matching (Target) PrimarySmtpAddress" $ResultObject | Export-Csv $MatchingPrimaryCSV -NoTypeInformation -Encoding UTF8 Write-Host "Comparison has been exported to: " -ForegroundColor Cyan -NoNewline Write-Host "$MatchingPrimaryCSV`t`n`t`n" -ForegroundColor Green Write-Host "Comparing Source to Target . . ." -BackgroundColor White -ForegroundColor Black $Yes = [ChoiceDescription]::new('&Yes', 'WriteX500: Yes') $No = [ChoiceDescription]::new('&No', 'WriteX500: No') $Options = [ChoiceDescription[]]($Yes, $No) $Title = 'Please inspect the results comparing Source ExternalEmailAddress to Target PrimarySmtpAddress' $Question = 'Select ( Y ) to choose the mailboxes where x500 addresses will be added. The x500s will be added from the LegacyExchageDN column and x500 column (if present)' $YesNo = $host.ui.PromptForChoice($Title, $Question, $Options, 1) switch ($YesNo) { 0 { $TargetResult = Join-Path -Path $PoshPath -ChildPath ('REPORT Results of adding x500s to Target Remote Mailboxes_{0}.csv' -f [DateTime]::Now.ToString('yyyy-MM-dd-hhmm')) Write-Host "Choose Recipients to add X500s then click OK - To select use Ctrl/Shift + click (individual) or Ctrl + A (all)" -ForegroundColor Black -BackgroundColor White $AddProxyList = Invoke-Addx500FromContact -MatchingPrimary $ResultObject | Out-GridView -OutputMode Multiple -Title "Choose Recipients to add X500s then click OK - To select use Ctrl/Shift + click (individual) or Ctrl + A (All)" if ($AddProxyList) { Get-DecisionbyOGV } else { Write-Host 'Halting as nothing was selected' ; continue } $UserSelection = Add-ProxyToRecipient -Type RemoteMailbox -AddProxyList $AddProxyList if ($UserSelection) { $UserSelection | Out-GridView -Title 'Results of adding Email Addresses to Target Remote Mailboxes' $UserSelection | Export-Csv $TargetResult -NoTypeInformation -Encoding UTF8 -Append Write-Host "`t`n`t`nLog has been exported to: " -ForegroundColor Cyan -NoNewline Write-Host "$TargetResult" -ForegroundColor Green } else { Write-Host "No changes are required. Halting script" -ForegroundColor Cyan } } 1 { return } } } |