Return to UI-to-PowerShell Mapping main page.
UI-to-PowerShell Mapping
The Edit Voice Route Dialog
Voices routes contain instructions that tell Microsoft Communications Server “14” how to route calls from Enterprise Voice users to phone numbers on the public switched telephone network (PSTN) or a private branch exchange (PBX).
The Edit Voice Route dialog and the New Voice Route dialog correspond to the properties and parameters of the following cmdlets:
· Get-CsVoiceRoute, which is used to retrieve information about your voice routes:Get-CsVoiceRoute
· New-CsVoiceRoute, which is used to create a new voice route:New-CsVoiceRoute -Identity "RedmondVoiceRoute" -PstnUsages @{add="Long Distance"}
· Remove-CsVoiceRoute, which is used to remove a voice route:Remove-CsVoiceRoute –Identity "RedmondVoiceRoute"
· Set-CsVoiceRoute, which is used to modify an existing voice route:Set-CsVoiceRoute -Identity "RedmondVoiceRoute" -PstnUsages @{add="Long Distance"}
The Edit Voice Route dialog is shown below, along with the corresponding parameter names found in New-CsVoiceRoute and Set-CsVoiceRoute:
For more information about the CsVoiceRoute cmdlets, type Get-Help cmdlet_name –Full | more at the Communications Server Management Shell prompt. For example:
Get-Help Set-CsVoiceRoute –Full | more