Skip to content

Instantly share code, notes, and snippets.

@win2000b
Created April 14, 2022 10:52
Show Gist options
  • Save win2000b/903a9a77bf3c4788f39e9184e216beb9 to your computer and use it in GitHub Desktop.
Save win2000b/903a9a77bf3c4788f39e9184e216beb9 to your computer and use it in GitHub Desktop.
Get List of Teams Numbers and export to CSV
# Install the Teams Module within PowerShell
Install-Module MicrosoftTeams
# Connect to Microsoft Teams PowerShell
Connect-MicrosoftTeams
#Get list of Users and export their details to csv
Get-CsOnlineUser -Filter {LineURI -ne $Null} | select DisplayName,LineURI,OnlineVoiceRoutingPolicy | Export-CSV c:\temp\teams.csv -NoTypeInformation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment