I have just had a client want a list of all the Teams in thair Office 365 Tennant and they could not find a quick way to do this via the MS Teams Admin Center. 
The following commands run in PowerShell got the listing they needed. 
Install-Module -Name MicrosoftTeams 
Connect-Teams
Get-Team | Format-List
							