Wahlparameter

Get-XpDialParams

Syntax

Get-XpDialParams [[-DialParamNames] <string[]>] [-Timeout <int>] [<CommonParameters>]

Description

The command performs a search for dialling parameters on the XPhone Connect Server and displays the result as a list of ATTDialParamObjectSerial objects. By default, only the following properties are displayed:

Name
Info
Description

Parameter

  • -DialParamNames <String[]>
    • Specifies the string to be searched for on the XPhone Connect Server.

    • Several names can be entered, separated by commas.

    • It is strongly recommended to use enclosing inverted commas, as the strings often contain special characters (e.g. spaces).

  • -Timeout <int>
    • Timeout in minutes.

    • If a query takes too long (e.g. due to too many data records or similar), the query can be cancelled with this parameter after the specified time.

  • <CommonParameters>

Input

This command does not support input via the pipeline and is therefore usually at the beginning of a command chain.

Output

The command Get-XpDialParams returns objects of the type ATTDialParamObjectSerial.

AreaCode

string AreaCode {get;set;}

Changed

bool Changed {get;set;}

CountryCode

string CountryCode {get;set;}

Description

string Description {get;set;}

Guid

C4B.Atlas.ATGuid Guid {get;}

HomeNumber

string HomeNumber {get;set;}

InternalCnoLength

int InternalCnoLength {get;set;}

IsReadonly

bool IsReadonly {get;set;}

LineAddressTrk

string LineAddressTrk {get;}

ModifyTimeStamp

datetime ModifyTimeStamp {get;set;}

Name

string Name {get;set;}

ObjectType

C4B.Atlas.Telephony.Config.ATTDialParamObjectType ObjectType {get;set;}

RM_ExtToInt

C4B.Atlas.ATStringCollection RM_ExtToInt {get;}

RM_ExtToIntInternal

C4B.Atlas.ATStringCollection RM_ExtToIntInternal {get;}

RM_IntToExt

C4B.Atlas.ATStringCollection RM_IntToExt {get;}

RM_IntToExtInternal

C4B.Atlas.ATStringCollection RM_IntToExtInternal {get;}

RM_TieLineCodes

C4B.Atlas.ATStringCollection RM_TieLineCodes {get;}

RM_TieLineCodesInternal

C4B.Atlas.ATStringCollection RM_TieLineCodesInternal {get;}

RR_DisplayToDialable

C4B.Atlas.ATStringCollection RR_DisplayToDialable {get;}

RR_DisplayToDialableInternal

C4B.Atlas.ATStringCollection RR_DisplayToDialableInternal {get;}

RR_DisplayToDisplay

C4B.Atlas.ATStringCollection RR_DisplayToDisplay {get;}

RR_DisplayToDisplayInternal

C4B.Atlas.ATStringCollection RR_DisplayToDisplayInternal {get;}

RR_DisplayToHashCode

C4B.Atlas.ATStringCollection RR_DisplayToHashCode {get;}

RR_DisplayToHashCodeInternal

C4B.Atlas.ATStringCollection RR_DisplayToHashCodeInternal {get;}

RR_LineToDisplay

C4B.Atlas.ATStringCollection RR_LineToDisplay {get;}

RR_LineToDisplayInternal

C4B.Atlas.ATStringCollection RR_LineToDisplayInternal {get;}

RR_PhoneToDisplay

C4B.Atlas.ATStringCollection RR_PhoneToDisplay {get;}

RR_PhoneToDisplayInternal

C4B.Atlas.ATStringCollection RR_PhoneToDisplayInternal {get;}

StripTrkAccessCodeInc

bool StripTrkAccessCodeInc {get;set;}

StripTrkAccessCodeOut

bool StripTrkAccessCodeOut {get;set;}

TrkAccessCode

string TrkAccessCode {get;set;}

TrkAccessCodePrivate

string TrkAccessCodePrivate {get;set;}

Type

C4B.Atlas.Telephony.Config.ATTConfigObject Type {get;}

VarConfig

C4B.Atlas.ATStringDictionary VarConfig {get;}

XMLConfig

string XMLConfig {get;set;}

You can display a list similar to this with the following command:

Get-XpDialParams | Get-Member

An output of all selection parameters with all properties (and their values) can be generated with the following command:

Get-XpDialParams | Select-Object -Property *

Example

  1. Show all dialling parameters:

    Get-XpDialParams
    
  2. Show the connector “OSBiz CTI”:

    Get-XpDialParams "OSBiz CTI"
    
  3. Show all dialling parameters begining with OSBiz und OSV:

    Get-XpDialParams OSBiz* , OSV*
    
  4. Show all dialling parameters with the country code 49 (Germany):

    Get-XpDialParams | Where-Object {$_.CountryCode -eq "49"}
    

or:

Get-XpDialParams | Where-Object -Property CountryCode -eq "49"

Have you found a mistake on this page?

Or is something not formulated well or too vague? Then we look forward to receiving an e-mail, preferably with a suggestion for improvement, to doku@c4b.de. Thank you very much!