Skip to content

Commit 1476c20

Browse files
authored
Merge pull request MicrosoftDocs#1 from get-itips/get-itips-patch-1
adding danny files
2 parents 4175efa + 9f78e96 commit 1476c20

File tree

2 files changed

+310
-0
lines changed

2 files changed

+310
-0
lines changed
Lines changed: 155 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,155 @@
1+
---
2+
external help file: Microsoft.Rtc.Management.Hosted.dll-help.xml
3+
applicable: Skype for Business Online
4+
title: Grant-CsTeamsEmergencyCallRoutingPolicy
5+
author:danny-levin
6+
ms.author:dannyle
7+
manager: roykuntz
8+
ms.reviewer: chenc, pthota
9+
schema: 2.0.0
10+
---
11+
12+
# Grant-CsTeamsEmergencyCallRoutingPolicy
13+
14+
## SYNOPSIS
15+
16+
## SYNTAX
17+
18+
```
19+
Grant-CsTeamsEmergencyCallRoutingPolicy [-PolicyName] <String> [-Tenant <System.Guid>]
20+
[-DomainController <Fqdn>] [-Identity] <UserIdParameter> [-PassThru] [-WhatIf] [-Confirm] [<CommonParameters>]
21+
```
22+
23+
## DESCRIPTION
24+
{{ This cmdlet assigns a Teams Emergency Call Routing policy with one user. Teams Emergency Call Routing policy is used for the life cycle of emergency call routing – emergency numbers and routing configuration. }}
25+
26+
## EXAMPLES
27+
28+
### Example 1
29+
```powershell
30+
PS C:> {{ Grant-CsTeamsEmergencyCallRoutingPolicy -Identity user1 -PolicyName TestECRP }}
31+
```
32+
33+
{{ This example assigns a Teams Emergency Call Routing policy(TestECRP) to a user(user1) }}
34+
35+
## PARAMETERS
36+
37+
### -Confirm
38+
Prompts you for confirmation before running the cmdlet.
39+
40+
```yaml
41+
Type: SwitchParameter
42+
Parameter Sets: (All)
43+
Aliases: cf
44+
45+
Required: False
46+
Position: Named
47+
Default value: None
48+
Accept pipeline input: False
49+
Accept wildcard characters: False
50+
```
51+
52+
### -DomainController
53+
{{ Allows you to specify a domain controller. If no domain controller is specified, the first available will be used. }}
54+
55+
```yaml
56+
Type: Fqdn
57+
Parameter Sets: (All)
58+
Aliases:
59+
60+
Required: False
61+
Position: Named
62+
Default value: None
63+
Accept pipeline input: False
64+
Accept wildcard characters: False
65+
```
66+
67+
### -Identity
68+
{{ Indicates the Identity of the user account the policy should be assigned to. }}
69+
70+
```yaml
71+
Type: UserIdParameter
72+
Parameter Sets: (All)
73+
Aliases:
74+
75+
Required: True
76+
Position: 0
77+
Default value: None
78+
Accept pipeline input: True (ByPropertyName, ByValue)
79+
Accept wildcard characters: False
80+
```
81+
82+
### -PassThru
83+
{{ Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. }}
84+
85+
```yaml
86+
Type: SwitchParameter
87+
Parameter Sets: (All)
88+
Aliases:
89+
90+
Required: False
91+
Position: Named
92+
Default value: None
93+
Accept pipeline input: False
94+
Accept wildcard characters: False
95+
```
96+
97+
### -PolicyName
98+
{{ The Identity of the Teams Emergency Call Routing policy to apply to the user. }}
99+
100+
```yaml
101+
Type: String
102+
Parameter Sets: (All)
103+
Aliases:
104+
105+
Required: True
106+
Position: 1
107+
Default value: None
108+
Accept pipeline input: False
109+
Accept wildcard characters: False
110+
```
111+
112+
### -Tenant
113+
{{ Microsoft internal usage only. }}
114+
115+
```yaml
116+
Type: System.Guid
117+
Parameter Sets: (All)
118+
Aliases:
119+
120+
Required: False
121+
Position: Named
122+
Default value: None
123+
Accept pipeline input: False
124+
Accept wildcard characters: False
125+
```
126+
127+
### -WhatIf
128+
Shows what would happen if the cmdlet runs.
129+
The cmdlet is not run.
130+
131+
```yaml
132+
Type: SwitchParameter
133+
Parameter Sets: (All)
134+
Aliases: wi
135+
136+
Required: False
137+
Position: Named
138+
Default value: None
139+
Accept pipeline input: False
140+
Accept wildcard characters: False
141+
```
142+
143+
### CommonParameters
144+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
145+
146+
## INPUTS
147+
148+
### Microsoft.Rtc.Management.AD.UserIdParameter
149+
150+
## OUTPUTS
151+
152+
### System.Object
153+
## NOTES
154+
155+
## RELATED LINKS
Lines changed: 155 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,155 @@
1+
---
2+
external help file: Microsoft.Rtc.Management.Hosted.dll-help.xml
3+
applicable: Skype for Business Online
4+
title: Grant-CsTeamsEmergencyCallingPolicy
5+
author:danny-levin
6+
ms.author:dannyle
7+
manager: roykuntz
8+
ms.reviewer: chenc, pthota
9+
schema: 2.0.0
10+
---
11+
12+
# Grant-CsTeamsEmergencyCallingPolicy
13+
14+
## SYNOPSIS
15+
16+
## SYNTAX
17+
18+
```
19+
Grant-CsTeamsEmergencyCallingPolicy [-PolicyName] <String> [-Tenant <System.Guid>] [-DomainController <Fqdn>]
20+
[-Identity] <UserIdParameter> [-PassThru] [-WhatIf] [-Confirm] [<CommonParameters>]
21+
```
22+
23+
## DESCRIPTION
24+
{{ This cmdlet assigns a Teams Emergency Calling policy to a user. Emergency Calling policy is used for the life cycle of emergency calling experience for the security desk and Teams client location experience. }}
25+
26+
## EXAMPLES
27+
28+
### Example 1
29+
```powershell
30+
PS C:> {{ Grant-CsTeamsEmergencyCallingPolicy -Identity user1 -PolicyName TestECP }}
31+
```
32+
33+
{{ This example assigns a Teams Emergency Calling policy to a user}}
34+
35+
## PARAMETERS
36+
37+
### -Confirm
38+
Prompts you for confirmation before running the cmdlet.
39+
40+
```yaml
41+
Type: SwitchParameter
42+
Parameter Sets: (All)
43+
Aliases: cf
44+
45+
Required: False
46+
Position: Named
47+
Default value: None
48+
Accept pipeline input: False
49+
Accept wildcard characters: False
50+
```
51+
52+
### -DomainController
53+
{{ Allows you to specify a domain controller. If no domain controller is specified, the first available will be used. }}
54+
55+
```yaml
56+
Type: Fqdn
57+
Parameter Sets: (All)
58+
Aliases:
59+
60+
Required: False
61+
Position: Named
62+
Default value: None
63+
Accept pipeline input: False
64+
Accept wildcard characters: False
65+
```
66+
67+
### -Identity
68+
{{ Indicates the Identity of the user account the policy should be assigned to. }}
69+
70+
```yaml
71+
Type: UserIdParameter
72+
Parameter Sets: (All)
73+
Aliases:
74+
75+
Required: True
76+
Position: 0
77+
Default value: None
78+
Accept pipeline input: True (ByPropertyName, ByValue)
79+
Accept wildcard characters: False
80+
```
81+
82+
### -PassThru
83+
{{ Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. }}
84+
85+
```yaml
86+
Type: SwitchParameter
87+
Parameter Sets: (All)
88+
Aliases:
89+
90+
Required: False
91+
Position: Named
92+
Default value: None
93+
Accept pipeline input: False
94+
Accept wildcard characters: False
95+
```
96+
97+
### -PolicyName
98+
{{ The Identity of the Teams Emergency Calling policy to apply to the user. }}
99+
100+
```yaml
101+
Type: String
102+
Parameter Sets: (All)
103+
Aliases:
104+
105+
Required: True
106+
Position: 1
107+
Default value: None
108+
Accept pipeline input: False
109+
Accept wildcard characters: False
110+
```
111+
112+
### -Tenant
113+
{{ Microsoft internal usage only }}
114+
115+
```yaml
116+
Type: System.Guid
117+
Parameter Sets: (All)
118+
Aliases:
119+
120+
Required: False
121+
Position: Named
122+
Default value: None
123+
Accept pipeline input: False
124+
Accept wildcard characters: False
125+
```
126+
127+
### -WhatIf
128+
Shows what would happen if the cmdlet runs.
129+
The cmdlet is not run.
130+
131+
```yaml
132+
Type: SwitchParameter
133+
Parameter Sets: (All)
134+
Aliases: wi
135+
136+
Required: False
137+
Position: Named
138+
Default value: None
139+
Accept pipeline input: False
140+
Accept wildcard characters: False
141+
```
142+
143+
### CommonParameters
144+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
145+
146+
## INPUTS
147+
148+
### Microsoft.Rtc.Management.AD.UserIdParameter
149+
150+
## OUTPUTS
151+
152+
### System.Object
153+
## NOTES
154+
155+
## RELATED LINKS

0 commit comments

Comments
 (0)