start-upgradeToOffice365Group.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
<#
.SYNOPSIS This function triggers the upgrade of the group to an Office 365 Modern / Unified Group .DESCRIPTION This function triggers the upgrade of the group to an Office 365 Modern / Unified Group .PARAMETER groupSMTPAddress THe SMTP address of the group to trigger the upgrade on. .OUTPUTS None .EXAMPLE start-upgradeToOffice365Group -groupSMTPAddress address #> Function start-upgradeToOffice365Group { [cmdletbinding()] Param ( [Parameter(Mandatory = $true)] [string]$groupSMTPAddress ) #Output all parameters bound or unbound and their associated values. write-functionParameters -keyArray $MyInvocation.MyCommand.Parameters.Keys -parameterArray $PSBoundParameters -variableArray (Get-Variable -Scope Local -ErrorAction Ignore) [string]$isTestError="No" #Declare function variables. #Start function processing. Out-LogFile -string "********************************************************************************" Out-LogFile -string "BEGIN start-upgradeToOffice365Group" Out-LogFile -string "********************************************************************************" #Call the command to begin the upgrade process. out-logFile -string "Calling command to being the upgrade process." out-logfile -string "NOTE: This command runs in the background and no status is provided." out-logfile -string "Administrators MUST validate the upgrade as successful manually." try{ $attempt=upgrade-o365DistributionGroup -DlIdentities $groupSMTPAddress } catch{ out-logFile -string $_ $isTestError="Yes" } out-logfile -string $attempt out-logfile -string ("Upgrade attempt successfully submitted = "+$attempt.SuccessfullySubmittedForUpgrade) if ($attempt.reason -ne $NULL) { out-logfile -string ("Error Reason = "+$attempt.errorReason) $isTestError="Yes" } Out-LogFile -string "END start-upgradeToOffice365Group" Out-LogFile -string "********************************************************************************" return $isTestError } |