Public/Migration/MailboxMove/License/Set-MailboxMoveLicense.ps1

function Set-MailboxMoveLicense {
    <#
    .SYNOPSIS
    Sets Office 365 licenses during a migration project
    Either CSV or Excel file from SharePoint can be used
 
    .DESCRIPTION
    Sets Office 365 licenses during a migration project
    Either CSV or Excel file from SharePoint can be used
 
    .PARAMETER SharePointURL
    Sharepoint url ex. https://fabrikam.sharepoint.com/sites/Contoso
 
    .PARAMETER ExcelFile
    Excel file found in "Shared Documents" of SharePoint site specified in SharePointURL
    ex. "Batches.xlsx"
    Minimum headers required are: BatchName, UserPrincipalName
 
    .PARAMETER MailboxCSV
    Path to csv of mailboxes. Minimum headers required are: BatchName, UserPrincipalName
 
    .EXAMPLE
    Set-MailboxMoveLicense
 
    .EXAMPLE
    Set-MailboxMoveLicense -MailboxCSV c:\scripts\batches.csv
 
    .EXAMPLE
    Set-MailboxMoveLicense -SharePointURL 'https://fabrikam.sharepoint.com/sites/Contoso' -ExcelFile 'Batches.xlsx'
 
    .NOTES
    Connect with:
 
    Connect-Cloud Contoso -EXO2 -AzureADver2
 
    or
 
    Connect-CloudMFA Contoso -EXO2 -AzureAD
    #>


    [CmdletBinding(DefaultParameterSetName = 'PlaceHolder')]
    [Alias('Set-MMLicense')]
    param (
        [Parameter(Mandatory, ParameterSetName = 'SharePoint')]
        [ValidateNotNullOrEmpty()]
        [string]
        $SharePointURL,

        [Parameter(Mandatory, ParameterSetName = 'SharePoint')]
        [ValidateNotNullOrEmpty()]
        [string]
        $ExcelFile,

        [Parameter(Mandatory, ParameterSetName = 'CSV')]
        [ValidateNotNullOrEmpty()]
        [string]
        $MailboxCSV,

        [Parameter()]
        [switch]
        $UseTargetUserPrincipalNameColumn
    )
    end {
        switch ($PSCmdlet.ParameterSetName) {
            'SharePoint' {
                $SharePointSplat = @{
                    SharePointURL                    = $SharePointURL
                    ExcelFile                        = $ExcelFile
                    NoBatch                          = $true
                    UseTargetUserPrincipalNameColumn = $UseTargetUserPrincipalNameColumn
                }
                Invoke-SetMailboxMoveLicense @SharePointSplat
            }
            'CSV' {
                $CSVSplat = @{
                    MailboxCSV                       = $MailboxCSV
                    NoBatch                          = $true
                    UseTargetUserPrincipalNameColumn = $UseTargetUserPrincipalNameColumn
                }
                Invoke-SetMailboxMoveLicense @CSVSplat
            }
            Default {
                Invoke-SetMailboxMoveLicense
            }
        }
    }
}