Private/Mount-FSLogixVHD.ps1

function Mount-FSLogixVHD ($Target){
    Write-Output "Mounting VHD."
    Write-Log -Message "Mounting VHD." -LogPath $LogPath
    Mount-VHD $Target
    (Get-DiskImage -ImagePath $Target | `
        Get-Disk | `
        Get-Partition).DriveLetter
    Get-PSDrive | Out-Null
}