Posted On March 31, 2019

Dial Plans Decoded

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Dial Plans Decoded
()
parenthesis enclose the dial plan
|
pipe means OR
x
represents a digit between 0 and 9
.
period means that the preceding element can be repeated many times
[]
signifies a subset
e.g. ([2-9]xx[2-9]xxxxxx) = only numerical values between 2 and 9 are allowed to precede the two digits and the following six digits
!
Item blocked!
e.g. (411!|xxx|1900xxxxxxx!|1[2-9]xx[2-9]xxxxxx) = no 411 or 1900 numbers allowed in the dial plan
< : >
< “optional value” : “substitution element” > “sequence to be matched”
Example: adding 714 to a 7-digit sequence – < :714>xxxxxxx
S0
Send preceded value(s) immediately when a pattern is matched, bypassing the default Interdigit Short Timer delay 

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Quick PowerShell Cmdlet to Move Computer Object

$computername='SomeComputerName' $targetOU='OU=Computers,DC=kimconnect,DC=com' Move-ADObject -Identity (Get-ADComputer $computername).objectguid -TargetPath $targetOU

PowerShell: Force Outlook to Compact On Exiting

Forcing Outlook to return free disk space to RDS nodes upon user exiting would be…

PowerShell: Kill a Windows Service Forcefully

# killService.ps1 $serviceName='vmms' function killService($serviceName='Spooler',$restart=$false){ $processId=Get-WmiObject -Class Win32_Service -Filter "Name LIKE '$serviceName'"|Select-Object -ExpandProperty ProcessId if($processId.count…