Created
November 15, 2019 15:56
-
-
Save kevinblumenfeld/71bec820cc55e440542d18e369e669d5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
function Invoke-TestMailboxMove { | |
param ( | |
[Parameter(Mandatory)] | |
[ValidateNotNullOrEmpty()] | |
$UserList | |
) | |
end { | |
$AcceptedDomains = (Get-AcceptedDomain).DomainName | |
$RoutingAddress = $AcceptedDomains -match '.mail.onmicrosoft.com' | |
foreach ($User in $UserList) { | |
$Error = [System.Collections.Generic.List[string]]::New() | |
$PreFlightHash = @{ | |
'DisplayName' = $User.DisplayName | |
'UserPrincipalName' = $User.UserPrincipalName | |
'OrganizationalUnit' = $User.OrganizationalUnit | |
} | |
$ErrorValue = [System.Collections.Generic.List[string]]::New() | |
try { | |
$MailUser = Get-MailUser -Identity $User.PrimarySmtpAddress -ErrorAction Stop | |
$PreFlightHash.Add('MailboxType', $User.RecipientTypeDetails) | |
$BadEmail = [System.Collections.Generic.List[string]]::New() | |
foreach ($Email in $MailUser.EmailAddresses) { | |
$UserDomain = [regex]::matches($Email, '(?<=@)(.*)').value | |
if ($UserDomain -notin $AcceptedDomains -and $UserDomain.length -gt 0) { | |
$BadEmail.Add($Email) | |
} | |
} | |
if (-not $BadEmail) { | |
$PreFlightHash.Add('EmailAddressesValid', $true) | |
} | |
else { | |
$Error.Add('InvalidEmail') | |
$ErrorValue.Add($BadEmail -join ',') | |
$PreFlightHash.Add('EmailAddressesValid', $false) | |
} | |
$PreFlightHash.Add('MailboxExists', $false) | |
$PreFlightHash.Add('IsDirSynced', $MailUser.IsDirSynced) | |
$PreFlightHash.Add('AccountDisabled', $MailUser.AccountDisabled) | |
if ($MailUser.AccountDisabled -and $User.RecipientTypeDetails -eq 'UserMailbox') { | |
$Error.Add('AccountDisabledforUserMailbox') | |
} | |
if ($MailUser.EmailAddresses -match $RoutingAddress) { | |
$PreFlightHash.Add('RoutingAddressValid', $true) | |
} | |
else { | |
$PreFlightHash.Add('RoutingAddressValid', $false) | |
$Error.Add('NoRoutingAddress') | |
} | |
if ($MailUser.WindowsEmailAddress -eq $MailUser.UserPrincipalName) { | |
$PreFlightHash.Add('UpnMatchesPrimarySmtp', $true) | |
} | |
else { | |
$PreFlightHash.Add('UpnMatchesPrimarySmtp', $false) | |
$Error.Add('UpnDoesNotMatchPrimarySmtp') | |
$ErrorValue.Add(('{0}/{1}' -f $MailUser.WindowsEmailAddress, $MailUser.UserPrincipalName)) | |
} | |
} | |
catch { | |
if ($Mailbox = Get-Mailbox -Identity $User.PrimarySmtpAddress -ErrorAction silentlycontinue) { | |
$PreFlightHash.Add('MailboxType', $Mailbox.RecipientTypeDetails) | |
$PreFlightHash.Add('AccountDisabled', $Mailbox.AccountDisabled) | |
$PreFlightHash.Add('IsDirSynced', $Mailbox.IsDirSynced) | |
$BadEmail = [System.Collections.Generic.List[string]]::New() | |
foreach ($Email in $Mailbox.EmailAddresses) { | |
$UserDomain = [regex]::matches($Email, '(?<=@)(.*)').value | |
if ($UserDomain -notin $AcceptedDomains -and $UserDomain.length -gt 0) { | |
$BadEmail.Add($Email) | |
} | |
} | |
if (-not $BadEmail) { | |
$PreFlightHash.Add('EmailAddressesValid', $true) | |
} | |
else { | |
$Error.Add('InvalidEmail') | |
$ErrorValue.Add($BadEmail -join ',') | |
$PreFlightHash.Add('EmailAddressesValid', $false) | |
} | |
if ($Mailbox.emailaddresses -match $RoutingAddress) { | |
$PreFlightHash.Add('RoutingAddressValid', $true) | |
} | |
else { | |
$PreFlightHash.Add('RoutingAddressValid', $false) | |
} | |
$PreFlightHash.Add('UpnMatchesPrimarySmtp', $mailbox.PrimarySmtpAddress -eq $mailbox.UserPrincipalName) | |
$PreFlightHash.Add('MailboxExists', $true) | |
$Error.Add('MailboxFound') | |
$ErrorValue.Add('MailboxCreated:{0}' -f $Mailbox.WhenCreated) | |
} | |
else { | |
$PreFlightHash.Add('MailboxType', $false) | |
$PreFlightHash.Add('IsDirSynced', $false) | |
$PreFlightHash.Add('EmailAddressesValid', $false) | |
$PreFlightHash.Add('RoutingAddressValid', $false) | |
$PreFlightHash.Add('UpnMatchesPrimarySmtp', $false) | |
$PreFlightHash.Add('MailboxExists', $false) | |
$Error.Add('NoMailUserOrMailboxFound') | |
} | |
} | |
if ($Error) { | |
$PreFlightHash.Add('Result', 'FAIL') | |
} | |
else { | |
$PreFlightHash.Add('Result', 'PASS') | |
} | |
if ($ErrorValue) { | |
$PreFlightHash.Add('ErrorValue', $ErrorValue -join '|') | |
} | |
else { | |
$PreFlightHash.Add('ErrorValue', '') | |
} | |
$PreFlightHash.Add('ErrorType', $Error -join '|') | |
[PSCustomObject]$PreFlightHash | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment