I have found that in may times, I want to order the dialin conference numbers.in SfB. I use the Display Number since I have only one region and I put the name in the Display Number.
I have found that in may times, I want to order the dialin conference numbers.in SfB. I use the Display Number since I have only one region and I put the name in the Display Number.
for ($i=0;$i -ne (Get-CsDialInConferencingAccessNumber).count;$i++) {
Get-CsDialInConferencingAccessNumber | Sort-Object DisplayNumber | select -Index $i | Set-CsDialInConferencingAccessNumber -ReorderedRegion "International" -Priority $i
}