Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions skype/skype-ps/skype/Get-CsTeamsEmergencyCallRoutingPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
external help file: Microsoft.Rtc.Management.Hosted.dll-help.xml
applicable: Skype for Business Online
title: Get-CsTeamsEmergencyCallRoutingPolicy
author:danny-levin
ms.author:dannyle
author: danny-levin
ms.author: dannyle
manager: roykuntz
ms.reviewer: chenc, pthota
schema: 2.0.0
Expand All @@ -28,28 +28,28 @@ Get-CsTeamsEmergencyCallRoutingPolicy [-Tenant <System.Guid>] [-Filter <String>]
```

## DESCRIPTION
{{ This cmdlet returns one or more Emergency Call Routing policy. This Policy is used for the life cycle of emergency call routing – emergency numbers and routing configuration }}
This cmdlet returns one or more Emergency Call Routing policy. This Policy is used for the life cycle of emergency call routing – emergency numbers and routing configuration

## EXAMPLES

### Example 1
```powershell
PS C:> {{ Get-CsTeamsEmergencyCallRoutingPolicy }}
PS C:> Get-CsTeamsEmergencyCallRoutingPolicy
```

{{ Retrieve all emergency call routing policy that are available in your scope }}
Retrieves all emergency call routing policies that are available in your scope

### Example 2
```powershell
PS C:> {{ Get-CsTeamsEmergencyCallRoutingPolicy -Identity TestECRP}}
PS C:> Get-CsTeamsEmergencyCallRoutingPolicy -Identity TestECRP
```

{{ Retrieve one emergency call routing policy with specific identity }}
Retrieves one emergency call routing policy specifying the identity

## PARAMETERS

### -Filter
{{ The Filter parameter allows you to limit the number of results based on filters you specify. }}
The Filter parameter allows you to limit the number of results based on filters you specify.

```yaml
Type: String
Expand All @@ -64,7 +64,7 @@ Accept wildcard characters: False
```

### -Identity
{{ Specify the policy that you would like to retrieve. }}
Specify the policy that you would like to retrieve.

```yaml
Type: XdsIdentity
Expand All @@ -79,7 +79,7 @@ Accept wildcard characters: False
```

### -LocalStore
{{ Microsoft internal use. }}
Microsoft internal use.

```yaml
Type: SwitchParameter
Expand All @@ -94,7 +94,7 @@ Accept wildcard characters: False
```

### -Tenant
{{ Microsoft internal use. }}
Microsoft internal use.

```yaml
Type: System.Guid
Expand Down
22 changes: 11 additions & 11 deletions skype/skype-ps/skype/Get-CsTeamsEmergencyCallingPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
external help file: Microsoft.Rtc.Management.Hosted.dll-help.xml
applicable: Skype for Business Online
title: Get-CsTeamsEmergencyCallingPolicy
author:danny-levin
ms.author:dannyle
author: danny-levin
ms.author: dannyle
manager: roykuntz
ms.reviewer: chenc, pthota
schema: 2.0.0
Expand All @@ -27,28 +27,28 @@ Get-CsTeamsEmergencyCallingPolicy [-Tenant <System.Guid>] [-Filter <String>] [-L
```

## DESCRIPTION
{{ This cmdlet returns one or more emergency calling policy. Emergency calling policy is used for the life cycle of emergency calling experience for the security desk and Teams client location experience. }}
This cmdlet returns one or more emergency calling policies. Emergency calling policy is used for the life cycle of emergency calling experience for the security desk and Teams client location experience.

## EXAMPLES

### Example 1
```powershell
PS C:> {{ Get-CsTeamsEmergencyCallingPolicy}}
PS C:> Get-CsTeamsEmergencyCallingPolicy
```

{{ Retrieve all emergency calling policy that are available in your scope}}
Retrieves all emergency calling policies that are available in your scope

### Example 2
```powershell
PS C:> {{ Get-CsTeamsEmergencyCallingPolicy -Identity TestECP}}
PS C:> Get-CsTeamsEmergencyCallingPolicy -Identity TestECP
```

{{ Retrieve emergency calling policy that is with identity TestECP}}
Retrieves emergency calling policy specifying the identity

## PARAMETERS

### -Filter
{{ The Filter parameter allows you to limit the number of results based on filters you specify. }}
The Filter parameter allows you to limit the number of results based on filters you specify.

```yaml
Type: String
Expand All @@ -63,7 +63,7 @@ Accept wildcard characters: False
```

### -Identity
{{ Specify the policy that you would like to retrieve. }}
Specify the policy that you would like to retrieve.

```yaml
Type: XdsIdentity
Expand All @@ -78,7 +78,7 @@ Accept wildcard characters: False
```

### -LocalStore
{{ Microsoft internal use. }}
Microsoft internal use.

```yaml
Type: SwitchParameter
Expand All @@ -93,7 +93,7 @@ Accept wildcard characters: False
```

### -Tenant
{{ Microsoft internal use only. }}
Microsoft internal use only.

```yaml
Type: System.Guid
Expand Down
28 changes: 14 additions & 14 deletions skype/skype-ps/skype/New-CsTeamsEmergencyCallRoutingPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
external help file: Microsoft.Rtc.Management.Hosted.dll-help.xml
applicable: Skype for Business Online
title: New-CsTeamsEmergencyCallRoutingPolicy
author:danny-levin
ms.author:dannyle
manger:roykuntz
author: danny-levin
ms.author: dannyle
manger: roykuntz
ms.reviewer: chenc, vaddank, pthota
schema: 2.0.0
---
Expand All @@ -22,22 +22,22 @@ New-CsTeamsEmergencyCallRoutingPolicy [-Tenant <System.Guid>] [-EmergencyNumbers
```

## DESCRIPTION
{{ This cmdlet creates a new Teams Emergency Call Routing policy with one or more emergency number. Teams Emergency Call Routing policy is used for the life cycle of emergency call routing – emergency numbers and routing configuration}}
This cmdlet creates a new Teams Emergency Call Routing policy with one or more emergency number. Teams Emergency Call Routing policy is used for the life cycle of emergency call routing – emergency numbers and routing configuration

## EXAMPLES

### Example 1
```powershell
PS C:> {{ $ne1 = New-CsTeamsEmergencyNumber -EmergencyDialString "112" -EmergencyDialMask "117;897" -OnlinePSTNUsage "Local" -CarrierProfile "Local"
New-CsTeamsEmergencyCallRoutingPolicy -Identity "testecrp" -Tenant $tenant -EmergencyNumbers @{add=$ne1} -AllowEnhancedEmergencyServices 1 -Description "test"}}
PS C:> $ne1 = New-CsTeamsEmergencyNumber -EmergencyDialString "112" -EmergencyDialMask "117;897" -OnlinePSTNUsage "Local" -CarrierProfile "Local"
New-CsTeamsEmergencyCallRoutingPolicy -Identity "testecrp" -Tenant $tenant -EmergencyNumbers @{add=$ne1} -AllowEnhancedEmergencyServices 1 -Description "test"
```

{{ This example creates a new Teams emergency number and create a Teams Emergency Call Routing policy with this emergency number.}}
This example creates a new Teams emergency number and create a Teams Emergency Call Routing policy with this emergency number.

## PARAMETERS

### -AllowEnhancedEmergencyServices
{{ Flag to enable Enhanced Emergency Services}}
Flag to enable Enhanced Emergency Services

```yaml
Type: Boolean
Expand Down Expand Up @@ -67,7 +67,7 @@ Accept wildcard characters: False
```

### -Description
{{ The Description parameter describes the Teams Emergency Call Routing policy - what it's for, what type of user it applies to and any other information that helps to identify the purpose of this policy. Maximum characters: 512.}}
The Description parameter describes the Teams Emergency Call Routing policy - what it's for, what type of user it applies to and any other information that helps to identify the purpose of this policy. Maximum characters: 512.

```yaml
Type: String
Expand All @@ -82,7 +82,7 @@ Accept wildcard characters: False
```

### -EmergencyNumbers
{{ Group of emergency numbers }}
Group of emergency numbers

```yaml
Type:
Expand All @@ -97,7 +97,7 @@ Accept wildcard characters: False
```

### -Force
{{ The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. }}
The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required.

```yaml
Type: SwitchParameter
Expand All @@ -112,7 +112,7 @@ Accept wildcard characters: False
```

### -Identity
{{ The Identity parameter is a unique identifier that designates the name of the policy. }}
The Identity parameter is a unique identifier that designates the name of the policy.

```yaml
Type: XdsIdentity
Expand All @@ -127,7 +127,7 @@ Accept wildcard characters: False
```

### -InMemory
{{ The InMemory parameter creates an object reference without actually committing the object as a permanent change. }}
The InMemory parameter creates an object reference without actually committing the object as a permanent change.

```yaml
Type: SwitchParameter
Expand All @@ -142,7 +142,7 @@ Accept wildcard characters: False
```

### -Tenant
{{ Specify the tenant id }}
Specify the tenant id

```yaml
Type: System.Guid
Expand Down
28 changes: 14 additions & 14 deletions skype/skype-ps/skype/New-CsTeamsEmergencyCallingPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
external help file: Microsoft.Rtc.Management.Hosted.dll-help.xml
applicable: Skype for Business Online
title: New-CsTeamsEmergencyCallingPolicy
author:danny-levin
ms.author:dannyle
author: danny-levin
ms.author: dannyle
manager: roykuntz
ms.reviewer: chenc, pthota
schema: 2.0.0
Expand All @@ -24,16 +24,16 @@ New-CsTeamsEmergencyCallingPolicy [-Tenant <System.Guid>] [-NotificationGroup <S
```

## DESCRIPTION
{{ This cmdlet creates new Teams Emergency Calling policy. Emergency calling policy is used for the life cycle of emergency calling experience for the security desk and Teams client location experience. }}
This cmdlet creates a new Teams Emergency Calling policy. Emergency calling policy is used for the life cycle of emergency calling experience for the security desk and Teams client location experience.

## EXAMPLES

### Example 1
```powershell
PS C:> {{ New-CsTeamsEmergencyCallingPolicy -Identity testECRP -Description "Test ECRP" -NotificationGroup "alert@ms.com" -NotificationDialOutNumber "4253214567" -NotificationMode NotificationOnly -ExternalLocationLookupMode $true }}
PS C:> New-CsTeamsEmergencyCallingPolicy -Identity testECRP -Description "Test ECRP" -NotificationGroup "alert@contoso.com" -NotificationDialOutNumber "4253214567" -NotificationMode NotificationOnly -ExternalLocationLookupMode $true
```

{{ This example creates a Teams Emergency Calling policy that has a identity of testECRP }}
This example creates a Teams Emergency Calling policy that has a identity of testECRP

## PARAMETERS

Expand All @@ -53,7 +53,7 @@ Accept wildcard characters: False
```

### -Description
{{ The Description parameter describes the Teams Emergency Calling policy - what it's for, what type of user it applies to and any other information that helps to identify the purpose of this policy. Maximum characters: 512. }}
The Description parameter describes the Teams Emergency Calling policy - what it is for, what type of user it applies to and any other information that helps to identify the purpose of this policy. Maximum characters: 512.

```yaml
Type: String
Expand All @@ -68,7 +68,7 @@ Accept wildcard characters: False
```

### -ExternalLocationLookupMode
{{ Enable ExternalLocationLookupMode }}
Enable ExternalLocationLookupMode

```yaml
Type: ExternalLocationLookupMode
Expand All @@ -84,7 +84,7 @@ Accept wildcard characters: False
```

### -Force
{{ The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. }}
The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required.

```yaml
Type: SwitchParameter
Expand All @@ -99,7 +99,7 @@ Accept wildcard characters: False
```

### -Identity
{{ The Identity parameter is a unique identifier that designates the name of the policy }}
The Identity parameter is a unique identifier that designates the name of the policy

```yaml
Type: XdsIdentity
Expand All @@ -114,7 +114,7 @@ Accept wildcard characters: False
```

### -InMemory
{{ The InMemory parameter creates an object reference without actually committing the object as a permanent change. }}
The InMemory parameter creates an object reference without actually committing the object as a permanent change.

```yaml
Type: SwitchParameter
Expand All @@ -129,7 +129,7 @@ Accept wildcard characters: False
```

### -NotificationDialOutNumber
{{ This parameter represents PSTN number which can be dialed out if NotificationMode is set to either of the two Conference values }}
This parameter represents PSTN number which can be dialed out if NotificationMode is set to either of the two Conference values

```yaml
Type: String
Expand All @@ -144,7 +144,7 @@ Accept wildcard characters: False
```

### -NotificationGroup
{{ NotificationGroup is a email list of users and groups to be notified of an emergency call }}
NotificationGroup is a email list of users and groups to be notified of an emergency call

```yaml
Type: String
Expand All @@ -159,7 +159,7 @@ Accept wildcard characters: False
```

### -NotificationMode
{{ The type of conference experience for security desk notification}}
The type of conference experience for security desk notification

```yaml
Type: Microsoft.Rtc.Management.WritableConfig.Policy.Teams.NotificationMode
Expand All @@ -175,7 +175,7 @@ Accept wildcard characters: False
```

### -Tenant
{{ Specify the tenant id}}
Specify the tenant id

```yaml
Type: System.Guid
Expand Down
Loading