Forum Discussion
Bulk Change Conference Toll Number?
- Jan 07, 2018
Ah spot on, thanks Michael.
So Joe, based on what Michael's bought to the table there, you can use the below to update users conferencing numbers in bulk, where XXXXXXXX is the existing number, and YYYYYYYY is the number you want to replace it with.
get-CsOnlineDialInConferencingUser | Where-Object {$_.servicenumber -eq XXXXXXXX} | %{Set-CsOnlineDialInConferencingUser -identity $_.sipaddress.substring(4) -ServiceNumber YYYYYYYY}
You might want to run just the GET part of the command on its own first to ensure it pulls back the expected users for you. I've tested this and it works fine.
Good Call Ben, this worked for me:
Get-CsOnlineDialInConferencingUser michael | %{Set-csOnlineDialInConferencingUser -identity $_.sipaddress.substring(4) -ServiceNumber 1##########}
I instantly received the "Your Office 365 Dial-In Conferencing information has changed", and immediately booking a Skype meeting had the new details.
Ah spot on, thanks Michael.
So Joe, based on what Michael's bought to the table there, you can use the below to update users conferencing numbers in bulk, where XXXXXXXX is the existing number, and YYYYYYYY is the number you want to replace it with.
get-CsOnlineDialInConferencingUser | Where-Object {$_.servicenumber -eq XXXXXXXX} | %{Set-CsOnlineDialInConferencingUser -identity $_.sipaddress.substring(4) -ServiceNumber YYYYYYYY}
You might want to run just the GET part of the command on its own first to ensure it pulls back the expected users for you. I've tested this and it works fine.
- Joe StockerJan 08, 2018Bronze ContributorThank you! This worked perfectly!
I also noticed a new command which appears to be in preview, if you run get-CsOnlineDialInConferencingUser there is an on/off switch for whether a user can use the Toll Free numbers - very cool! Says I can't use it because I am not in the preview program. Can't wait till that rolls out!