Audio Conferencing assign Dial-In Number to different groups of people

Copper Contributor

We have several company locations. We created a security Group for earch Location. We would now like to receive different national dial-in numbers for Audio conferencing in Microsoft Teams,  for the specific locations. Currently, everyone is assigned a German number, as our headquarter is located in Germany. In the Admin Portal, there is only the possibility to assign numbers to an individual user but not to groups. Does anyone already has successfully used or created a Powershell script for such a use case?

1 Reply

@Jenefacia I have used the Set-CsOnlineDialInConferencingUser command in powershell to cycle through a list of users and update their conferencing info. You will need to specify -servicenumber. This is the number shown by default on the users meeting invites.

 

This is the example on the MS docs site linked below:

Set-CsOnlineDialInConferencingUser -Identity "Ken Meyers" -ConferenceId 3542699 -ResetLeaderPin -ServiceNumber 14255037265

 

https://docs.microsoft.com/en-us/powershell/module/skype/set-csonlinedialinconferencinguser?view=sky...