Forum Discussion
hernan-invosys
Jul 15, 2020Copper Contributor
Powershell user phone number
Hello guys, I'm using Powershell to connect to MicrosoftTeams. I would like to retrieve the users phone number, like I can see when access https://admin.teams.microsoft.com/users. The cmdlet Get-...
- Jul 16, 2020
Hey,
You can use the Skype for Business PowerShell module.
https://www.microsoft.com/en-us/download/details.aspx?id=39366
Once installed, connect to the shell using :
Import-Module SkypeOnlineConnector $sfboSession = New-CsOnlineSession Import-PSSession $sfboSession -AllowClobber Enable-CsOnlineSessionForReconnection
I use the following command to get all the users with a telephone number assigned.
Get-CsOnlineUser | Where-Object { $_.LineURI -notlike $null } | select UserPrincipalName, LineURI
Hope this helps.
Steve.
S_Thomspon
Jul 16, 2020Copper Contributor
Hey,
You can use the Skype for Business PowerShell module.
https://www.microsoft.com/en-us/download/details.aspx?id=39366
Once installed, connect to the shell using :
Import-Module SkypeOnlineConnector
$sfboSession = New-CsOnlineSession
Import-PSSession $sfboSession -AllowClobber
Enable-CsOnlineSessionForReconnection
I use the following command to get all the users with a telephone number assigned.
Get-CsOnlineUser | Where-Object { $_.LineURI -notlike $null } | select UserPrincipalName, LineURI
Hope this helps.
Steve.
- hernan-invosysJul 17, 2020Copper Contributor
Thanks S_Thomspon, much appreciated