Skip to content

Commit 3296d10

Browse files
committed
Merge branch 'master' into Viva-chrisda
2 parents 9409812 + 2cae0ec commit 3296d10

File tree

9 files changed

+80
-8
lines changed

9 files changed

+80
-8
lines changed

exchange/exchange-ps/exchange/Set-MailboxCalendarFolder.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,19 @@ Accept wildcard characters: False
283283
### -SharedCalendarSyncStartDate
284284
This parameter is available only in the cloud-based service.
285285

286-
{{ Fill SharedCalendarSyncStartDate Description }}
286+
**Note**: This parameter is supported only for shared calendars that have been upgraded as described in [Calendar sharing in Microsoft 365](https://support.microsoft.com/office/365-b576ecc3-0945-4d75-85f1-5efafb8a37b4), and is not applicable to any other type of calendar or mailbox folder.
287+
288+
The SharedCalendarSyncStartDate parameter specifies the limit for past events that are visible to users who have access to the specified shared calendar. A copy of the shared calendar with events that go back as far as the value specified by this parameter is stored in the user's mailbox.
289+
290+
To specify a date/time value for this parameter, use either of the following options:
291+
292+
- Specify the date/time value in UTC: For example, "2021-05-06 14:30:00z".
293+
- Specify the date/time value as a formula that converts the date/time in your local time zone to UTC: For example, `(Get-Date "5/6/2021 9:30 AM").ToUniversalTime()`. For more information, see [Get-Date](https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Utility/Get-Date).
294+
295+
**Notes**:
296+
297+
- Users need to have FullDetails, Editor, or Delegate access to the specified shared calendar.
298+
- Setting this parameter might cause events in the shared calendar to briefly disappear from view while the calendar is resynchronized.
287299

288300
```yaml
289301
Type: DateTime

skype/skype-ps/skype/New-CsCallQueue.md

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,22 +22,23 @@ New-CsCallQueue -Name <String> [-AgentAlertTime <Int16>] [-AllowOptOut <Boolean>
2222
[-Tenant <Guid>] [-UseDefaultMusicOnHold <Boolean>] [-WelcomeMusicAudioFileId <Guid>] [-MusicOnHoldAudioFileId <Guid>]
2323
[-OverflowAction <Object>] [-OverflowActionTarget <Guid>] [-OverflowThreshold <Int16>]
2424
[-TimeoutAction <Object>] [-TimeoutActionTarget <Guid>] [-TimeoutThreshold <Int16>]
25-
[-RoutingMethod <Object>] [-PresenceBasedRouting <Boolean>] [-ConferenceMode <Boolean>] [-Users <List>] [-LanguageId <String>] [-LineUri <String>] [-OverflowSharedVoicemailTextToSpeechPrompt <String>] [-OverflowSharedVoicemailAudioFilePrompt <Guid>] [-EnableOverflowSharedVoicemailTranscription <Boolean>] [-TimeoutSharedVoicemailTextToSpeechPrompt <String>] [-TimeoutSharedVoicemailAudioFilePrompt <Guid>] [-EnableTimeoutSharedVoicemailTranscription <Boolean>] [<CommonParameters>]
25+
[-RoutingMethod <Object>] [-PresenceBasedRouting <Boolean>] [-ConferenceMode <Boolean>] [-Users <List>] [-LanguageId <String>] [-LineUri <String>] [-OverflowSharedVoicemailTextToSpeechPrompt <String>] [-OverflowSharedVoicemailAudioFilePrompt <Guid>] [-EnableOverflowSharedVoicemailTranscription <Boolean>] [-TimeoutSharedVoicemailTextToSpeechPrompt <String>] [-TimeoutSharedVoicemailAudioFilePrompt <Guid>] [-EnableTimeoutSharedVoicemailTranscription <Boolean>]
26+
[-ChannelId <String>] [-ChannelUserObjectId <Guid>] [<CommonParameters>]
2627
```
2728

2829
## DESCRIPTION
2930
The New-CsCallQueue cmdlet creates a new Call Queue.
3031

3132
## EXAMPLES
3233

33-
### -------------------------- Example 1 --------------------------
34+
### Example 1
3435
```
3536
New-CsCallQueue -Name "Help Desk" -UseDefaultMusicOnHold $true
3637
```
3738

3839
This example creates a Call Queue for the organization named "Help Desk" using default music on hold.
3940

40-
### -------------------------- Example 2 --------------------------
41+
### Example 2
4142
```
4243
New-CsCallQueue -Name "Help desk" -RoutingMethod Attendant -DistributionLists @("8521b0e3-51bd-4a4b-a8d6-b219a77a0a6a", "868dccd8-d723-4b4f-8d74-ab59e207c357") -AllowOptOut $false -AgentAlertTime 30 -OverflowThreshold 15 -OverflowAction Forward -OverflowActionTarget 7fd04db1-1c8e-4fdf-9af5-031514ba1358 -TimeoutThreshold 30 -TimeoutAction Disconnect -MusicOnHoldAudioFileId 1e81adaf-7c3e-4db1-9d61-5d135abb1bcc -WelcomeMusicAudioFileId 0b31bbe5-e2a0-4117-9b6f-956bca6023f8
4344
@@ -477,6 +478,38 @@ Accept pipeline input: False
477478
Accept wildcard characters: False
478479
```
479480
481+
### -ChannelId
482+
Id of the channel to connect a call queue to.
483+
484+
```yaml
485+
Type: String
486+
Parameter Sets: (All)
487+
Aliases:
488+
Applicable: Skype for Business Online
489+
490+
Required: False
491+
Position: Named
492+
Default value: None
493+
Accept pipeline input: False
494+
Accept wildcard characters: False
495+
```
496+
497+
### -ChannelUserObjectId
498+
Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).
499+
500+
```yaml
501+
Type: Guid
502+
Parameter Sets: (All)
503+
Aliases:
504+
Applicable: Skype for Business Online
505+
506+
Required: False
507+
Position: Named
508+
Default value: None
509+
Accept pipeline input: False
510+
Accept wildcard characters: False
511+
```
512+
480513
### CommonParameters
481514
This cmdlet supports the common parameters: `-Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).`
482515

skype/skype-ps/skype/New-CsOnlinePSTNGateway.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ New-CsOnlinePSTNGateway [-Tenant <System.Guid>] [-Fqdn <String>] [-SipSignalingP
2525
[-GatewaySiteId <String>] [-GatewaySiteLbrEnabled <Boolean>] [-BypassMode <String>] [-GenerateRingingWhileLocatingUser <Boolean>]
2626
[-InboundTeamsNumberTranslationRules <String>] [-InboundPSTNNumberTranslationRules <String>]
2727
[-OutboundTeamsNumberTranslationRules <String>] [-OutboundPSTNNumberTranslationRules <String>] [-PidfloSupported <Boolean>]
28-
[-InMemory] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
28+
[-MediaRelayRoutingLocationOverride <String>] [-InMemory] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
2929
```
3030

3131
## DESCRIPTION
@@ -243,6 +243,23 @@ Accept pipeline input: False
243243
Accept wildcard characters: False
244244
```
245245
246+
### -MediaRelayRoutingLocationOverride
247+
This parameter is reserved for use with managed carriers.
248+
249+
Allows selecting path for media manually. Direct Routing assigns a datacenter for media path based on the public IP of the SBC. We always select closest to the SBC datacenter. However, in some cases a public IP from for example a US range can be assigned to an SBC located in Europe. In this case we will be using not optimal media path. This parameter allows manually set the preferred region for media traffic. We only recommend setting this parameter if the call logs clearly indicate that automatic assignment of the datacenter for media path does not assign the closest to the SBC datacenter
250+
251+
```yaml
252+
Type: String
253+
Parameter Sets: (All)
254+
Aliases:
255+
Applicable: Microsoft Teams
256+
Required: False
257+
Position: Named
258+
Default value: $false
259+
Accept pipeline input: False
260+
Accept wildcard characters: False
261+
```
262+
246263
### -FailoverResponseCodes
247264
If Direct Routing receives any 4xx or 6xx SIP error code in response to an outgoing Invite the call is considered completed by default. (Outgoing in this context is a call from a Teams client to the PSTN with traffic flow: Teams Client -> Direct Routing -> SBC -> Telephony network). Setting the SIP codes in this parameter forces Direct Routing on receiving the specified codes try another SBC (if another SBC exists in the voice routing policy of the user). Find more information in the "Reference" section of "Phone System Direct Routing" documentation.
248265

skype/skype-ps/skype/Set-CsOnlinePSTNGateway.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Modifies the previously defined Session Border Controller (SBC) Configuration th
2121
Set-CsOnlinePSTNGateway [-Tenant <System.Guid>] [-SipSignalingPort <Int32>] [-FailoverTimeSeconds <Int32>]
2222
[-ForwardCallHistory <Boolean>] [-ForwardPai <Boolean>] [-SendSipOptions <Boolean>]
2323
[-MaxConcurrentSessions <System.Int32>] [-Enabled <Boolean>] [-MediaBypass <Boolean>] [-GatewaySiteId <String>]
24-
[-GatewaySiteLbrEnabled <Boolean>] [-MediaRelayRoutingLocationOverride] [-Identity <XdsGlobalRelativeIdentity>]
24+
[-GatewaySiteLbrEnabled <Boolean>] [-MediaRelayRoutingLocationOverride <String>] [-Identity <XdsGlobalRelativeIdentity>]
2525
[-BypassMode <String>] [-GenerateRingingWhileLocatingUser <Boolean>]
2626
[-InboundTeamsNumberTranslationRules <String>] [-InboundPSTNNumberTranslationRules <String>]
2727
[-OutboundTeamsNumberTranslationRules <String>] [-PidfloSupported <Boolean>] [-OutboundPSTNNumberTranslationRules <String>]
@@ -199,10 +199,12 @@ Accept wildcard characters: False
199199
```
200200
201201
### -MediaRelayRoutingLocationOverride
202+
This parameter is reserved for use with managed carriers.
203+
202204
Allows selecting path for media manually. Direct Routing assigns a datacenter for media path based on the public IP of the SBC. We always select closest to the SBC datacenter. However, in some cases a public IP from for example a US range can be assigned to an SBC located in Europe. In this case we will be using not optimal media path. This parameter allows manually set the preferred region for media traffic. We only recommend setting this parameter if the call logs clearly indicate that automatic assignment of the datacenter for media path does not assign the closest to the SBC datacenter
203205
204206
```yaml
205-
Type: Boolean
207+
Type: String
206208
Parameter Sets: (All)
207209
Aliases:
208210
Applicable: Microsoft Teams

teams/teams-ps/teams/Get-CsTeamTemplate.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ schema: 2.0.0
1616

1717
This cmdlet supports retrieving details of a team template available to your tenant given the team template uri.
1818

19+
NOTE: The returned template definition is a PowerShell object formatted as a JSON for readability. Please refer to the examples for suggested interaction flows for template management.
20+
1921
## SYNTAX
2022

2123
### Get (Default)

teams/teams-ps/teams/Get-Team.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Returns the team that matches the specified MailNickName
5959
```
6060
PS> Get-Team -DisplayName "Sales and Marketing"
6161
```
62-
Returns the team that matches the specified DisplayName
62+
Returns the team that includes the specified text in its DisplayName. (This acts as a filter rather than an exact match).
6363

6464
## PARAMETERS
6565

teams/teams-ps/teams/New-CsGroupPolicyAssignment.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ ms.reviewer:
1212

1313
## SYNOPSIS
1414

15+
**Note:** Group policy assignment is currently not available in Microsoft 365 Government GCC High or DoD deployments.
16+
1517
This cmdlet is used to assign a policy to a security group or distribution list.
1618

1719
## SYNTAX

teams/teams-ps/teams/New-CsTeamTemplate.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ schema: 2.0.0
1616

1717
This cmdlet lets you provision a new team template for use in Microsoft Teams. Learn more about team templates here.
1818

19+
NOTE: The response is a PowerShell object formatted as a JSON for readability. Please refer to the examples for suggested interaction flows for template management.
20+
1921
## SYNTAX
2022

2123
### NewExpanded (Default)

teams/teams-ps/teams/Update-CsTeamTemplate.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ schema: 2.0.0
1616

1717
This cmdlet submits an operation that updates a custom team template with new team template settings.
1818

19+
NOTE: The response is a PowerShell object formatted as a JSON for readability. Please refer to the examples for suggested interaction flows for template management.
20+
1921
## SYNTAX
2022

2123
### UpdateExpanded (Default)

0 commit comments

Comments
 (0)