start-replaceOffice365Dynamic.ps1

<#
    .SYNOPSIS
 
    This function begins the process of replacing the Office 365 settings for dynamic groups that have been migrated that had cloud only dependencies.
 
    .DESCRIPTION
 
    This function begins the process of replacing the Office 365 settings for dynamic groups that have been migrated that had cloud only dependencies.
 
    .PARAMETER office365Attribute
 
    The office 365 attribute.
 
    .PARAMETER office365Member
 
    The member that is being added.
 
    .PARAMETER groupSMTPAddress
 
    The member that is being added.
 
    .OUTPUTS
 
    None
 
    .EXAMPLE
 
    sstart-ReplaceOffice365Dynamic -office365Attribute Attribute -office365Member groupMember -groupSMTPAddress smtpAddess
 
    #>

    Function start-ReplaceOffice365Dynamic
    {
        [cmdletbinding()]

        Param
        (
            [Parameter(Mandatory = $true)]
            $office365Attribute,
            [Parameter(Mandatory = $true)]
            [string]$office365Member,
            [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"

        #Start function processing.

        Out-LogFile -string "********************************************************************************"
        Out-LogFile -string "BEGIN start-ReplaceOffice365Dynamic"
        Out-LogFile -string "********************************************************************************"

        #Log the parameters and variables for the function.

        $functionCommand=$NULL

        #Declare function variables.

        out-Logfile -string "Processing operation..."

        if ($office365Attribute -eq "ManagedBy")
        {
            out-logfile -string "Attribute is managedBy - this is single value on Dynamic DLs"

            $functionCommand="set-o365DynamicDistributionGroup -identity $office365Member -$office365Attribute '$groupSMTPAddress' -errorAction STOP"

            $scriptBlock = [scriptBlock]::create($functionCommand)

            out-logfile -string ("The command to execute: "+$functionCommand)

            try{
                & $scriptBlock
            }
            catch{
                out-logfile -string $_
                $isTestError="Yes"
            }
        }
        else 
        {
            $functionCommand="set-o365DynamicDistributionGroup -identity $office365Member -$office365Attribute @{add='$groupSMTPAddress'} -errorAction STOP"
            out-logfile -string ("The command to execute: "+$functionCommand)

            $scriptBlock = [scriptBlock]::create($functionCommand)

            out-logfile -string ("The script block to execute is: "+$scriptBlock)

            try {
                & $scriptBlock
            }
            catch {
                out-logfile -string $_
                $isTestError="Yes"
            }
        }
        
        Out-LogFile -string "END start-ReplaceOffice365Dynamic"
        Out-LogFile -string "********************************************************************************"

        return $isTestError
    }