Skip to content

Commit fcefc84

Browse files
authored
Merge branch 'main' into patch-2
2 parents cf6febe + 714a310 commit fcefc84

File tree

6 files changed

+15
-19
lines changed

6 files changed

+15
-19
lines changed

exchange/exchange-ps/ExchangePowerShell/Remove-ComplianceSearch.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,9 @@ This example removes the compliance search named Case 1234
4848

4949
> Applicable: Exchange Server 2016, Exchange Server 2019, Exchange Server SE, Security & Compliance
5050
51-
The Identity parameter specifies the compliance search that you want to remove.
51+
The Identity parameter specifies the name of compliance search that you want to remove.
5252

53-
You can use any value that uniquely identifies the compliance search. For example:
54-
55-
- Name
56-
- JobRunId (GUID)
57-
58-
You can find these values by running the command Get-ComplianceSearch | Format-Table -Auto Name,JobRunId,Status
53+
You can find this value by running the command `Get-ComplianceSearch | Format-Table -Auto Name,JobRunId,Status`.
5954

6055
```yaml
6156
Type: ComplianceSearchIdParameter

teams/teams-ps/MicrosoftTeams/Get-CsSharedCallQueueHistoryTemplate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ title: Get-CsSharedCallQueueHistoryTemplate
1313
# Get-CsSharedCallQueueHistoryTemplate
1414

1515
## SYNOPSIS
16-
Use the Get-CsSharedCallQueueHistory cmdlet to list the Shared Call Queue History templates.
16+
This PowerShell cmdlet is being deprecated, please use the new version [Get-CsSharedCallHistoryTemplate](./Get-CsSharedCallHistoryTemplate.md) instead
1717

1818
## SYNTAX
1919
> [!IMPORTANT]

teams/teams-ps/MicrosoftTeams/MicrosoftTeams.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ Get the status of an active bulk sign in request.
297297
Retrieves the list of Shared Call History templates.
298298

299299
### [Get-CsSharedCallQueueHistoryTemplate](Get-CsSharedCallQueueHistoryTemplate.md)
300-
```powershell Get-CsSharedCallQueueHistoryTemplate -Id <string> [<CommonParameters>] ```
300+
Deprecated - new cmdlet is Get-CsSharedCallHistoryTemplate
301301

302302
### [Get-CsTagsTemplate](Get-CsTagsTemplate.md)
303303
Retrieves a list of existing Tag templates.
@@ -936,7 +936,7 @@ Use the New-CsSdgBulkSignInRequest cmdlet to sign in a batch of up to 100 device
936936
Use the New-CsSharedCallHistoryTemplate cmdlet to create a Shared Call History template.
937937

938938
### [New-CsSharedCallQueueHistoryTemplate](New-CsSharedCallQueueHistoryTemplate.md)
939-
Use the New-CsSharedCallQueueHistoryTemplate cmdlet to create a Shared Call Queue History template.
939+
Deprecated - new cmdlet is New-CsSharedCallHistoryTemplate
940940

941941
### [New-CsTag](New-CsTag.md)
942942
Use the New-CsTag cmdlet to create a new tag that can be added to a Tag template.
@@ -1251,7 +1251,7 @@ This cmdlet will remove/delete a device from the remote log collection configura
12511251
Removes Shared Call History template.
12521252

12531253
### [Remove-CsSharedCallQueueHistoryTemplate](Remove-CsSharedCallQueueHistoryTemplate.md)
1254-
```powershell Remove-CsSharedCallQueueHistoryTemplate -Id <String> [<CommonParameters>] ```
1254+
Deprecated - use new cmdlet CsSharedCallHistoryTemplate
12551255

12561256
### [Remove-CsTagsTemplate](Remove-CsTagsTemplate.md)
12571257
Deletes an existing Tag template.
@@ -1581,7 +1581,7 @@ This cmdlet allows the admin to create and edit a device requested for remote lo
15811581
This cmdlet allows to configure Shared Call History template.
15821582

15831583
### [Set-CsSharedCallQueueHistoryTemplate](Set-CsSharedCallQueueHistoryTemplate.md)
1584-
```powershell Set-CsSharedCallQueueHistoryTemplate -Instance <instance> [<CommonParameters>] ```
1584+
Deprecated - use new cmdlet Set-CsSharedCallHistoryTemplate
15851585

15861586
### [Set-CsTagsTemplate](Set-CsTagsTemplate.md)
15871587
Make changes to an existing Tag template.

teams/teams-ps/MicrosoftTeams/New-CsSharedCallQueueHistoryTemplate.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ title: New-CsSharedCallQueueHistoryTemplate
1414
# New-CsSharedCallQueueHistoryTemplate
1515

1616
## SYNOPSIS
17-
Use the New-CsSharedCallQueueHistoryTemplate cmdlet to create a Shared Call Queue History template.
17+
18+
This PowerShell cmdlet is being deprecated, please use the new version [New-CsSharedCallHistoryTemplate](./New-CsSharedCallHistoryTemplate.md) instead
1819

1920
> [!IMPORTANT]
2021
>This PowerShell cmdlet is being deprecated, please use the new version [New-CsSharedCallHistoryTemplate](./New-CsSharedCallHistoryTemplate.md) instead
@@ -44,7 +45,7 @@ This example creates a new Shared CallQueue History template where incoming miss
4445

4546
Who sees answered and outbound calls in the shared call queue history.
4647

47-
PARAMVALUE: Off | AuthorizedUsersOnly | AuthorizedUsersAndAgents
48+
PARAMVALUE: None | AuthorizedUsersOnly | AuthorizedUsersAndAgents
4849

4950
```yaml
5051
Type: Object
@@ -53,7 +54,7 @@ Aliases:
5354

5455
Required: False
5556
Position: Named
56-
Default value: Off
57+
Default value: None
5758
Accept pipeline input: False
5859
Accept wildcard characters: False
5960
```
@@ -78,7 +79,7 @@ Accept wildcard characters: False
7879
7980
Who sees incoming missed calls in the shared call queue history.
8081
81-
PARAMVALUE: Off | AuthorizedUsersOnly | AuthorizedUsersAndAgents
82+
PARAMVALUE: None | AuthorizedUsersOnly | AuthorizedUsersAndAgents
8283
8384
```yaml
8485
Type: Object
@@ -87,7 +88,7 @@ Aliases:
8788

8889
Required: False
8990
Position: Named
90-
Default value: Off
91+
Default value: None
9192
Accept pipeline input: False
9293
Accept wildcard characters: False
9394
```

teams/teams-ps/MicrosoftTeams/Remove-CsSharedCallQueueHistoryTemplate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ title: Remove-CsSharedCallQueueHistoryTemplate
1515

1616

1717
## SYNOPSIS
18-
Deletes a Shared Call Queue History template.
18+
This PowerShell cmdlet is being deprecated, please use the new version [Remove-CsSharedCallHistoryTemplate](./Remove-CsSharedCallHistoryTemplate.md) instead.
1919

2020
> [!IMPORTANT]
2121
>This PowerShell cmdlet is being deprecated, please use the new version [Remove-CsSharedCallHistoryTemplate](./Remove-CsSharedCallHistoryTemplate.md) instead.

teams/teams-ps/MicrosoftTeams/Set-CsSharedCallQueueHistoryTemplate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ title: Set-CsSharedCallQueueHistoryTemplate
1414
# Set-CsSharedCallQueueHistoryTemplate
1515

1616
## SYNOPSIS
17-
Use the Set-CsSharedCallQueueHistoryTemplate cmdlet to change a Shared Call Queue History template
17+
This PowerShell cmdlet is being deprecated, please use the new version [Set-CsSharedCallHistoryTemplate](./Set-CsSharedCallHistoryTemplate.md) instead
1818

1919
> [!IMPORTANT]
2020
>This PowerShell cmdlet is being deprecated, please use the new version [Set-CsSharedCallHistoryTemplate](./Set-CsSharedCallHistoryTemplate.md) instead

0 commit comments

Comments
 (0)