Public/Start-ArchiveMigration.ps1

Function Start-ArchiveMigration {
    <#
.SYNOPSIS
    Begins a migration of a PST file from the blob.

.DESCRIPTION
    A more detailed description of what the function does.

.EXAMPLE
    The example below does blah
    PS C:\> <Example>
    
.NOTES
    Author: Jesse Newell
    Last Edit: 2019-10-18
    Version 1.0 - Initial release of Start-ArchiveMigration - 11/15/2018
    

#>


    # Ensure connection to Exchange Online
    Test-ExchangeOnlineLogin -Connect

    New-MailboxImportRequest


}