File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ ms.reviewer: williamlooney
15
15
## SYNTAX
16
16
17
17
``` powershell
18
- Set-SharedCallQueueHistoryTemplate -Id <instance>
18
+ Set-SharedCallQueueHistoryTemplate -Instance <instance> [<CommonParameters>]
19
19
```
20
20
21
21
## DESCRIPTION
@@ -28,14 +28,16 @@ Use the Set-SharedCallQueueHistory cmdlet to change a Shared Call Queue History
28
28
29
29
### -------------------------- Example 1 --------------------------
30
30
```
31
- $set-SharedCallQueueHistoryTemplate -Id $abc
31
+ $SharedCQHistory = Get-CsSharedCallQueueHistory -Id 66f0dc32-d344-4bb1-b524-027d4635515c
32
+ $SharedCQHisotry.AnsweredAndOutboundCalls = "AuthorizedUsersAndAgents"
33
+ Set-CsSharedCallQueueHistoryTemplate -Instance $SharedCQHistory
32
34
```
33
35
34
- This example creates a new Shared CallQueue History template.
36
+ This example sets the AnsweredOutboundCalls value in the Shared Call History Template with the Id ` 66f0dc32-d344-4bb1-b524-027d4635515c `
35
37
36
38
## PARAMETERS
37
39
38
- ### -Id
40
+ ### -Instance
39
41
The instance of the shared call queue history template to change.
40
42
41
43
``` yaml
You can’t perform that action at this time.
0 commit comments