Skip to content

Commit 9e96401

Browse files
authored
Merge branch 'master' into patch-42
2 parents caebb3b + 23fda50 commit 9e96401

File tree

8 files changed

+72
-17
lines changed

8 files changed

+72
-17
lines changed

exchange/exchange-ps/exchange/encryption-and-certificates/Get-OMEConfiguration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ This example returns a summary list of all OME configurations in the organizatio
3838

3939
### -------------------------- Example 2 --------------------------
4040
```
41-
Get-OMEConfiguration -Identity "OME Configuration" | Format-List
41+
Get-OMEConfiguration | Format-List
4242
```
4343

44-
This example returns detailed information for the default OME configuration named OME Configuration.
44+
This example returns detailed information for all OME configurations in the organization.
4545

4646
## PARAMETERS
4747

exchange/exchange-ps/exchange/encryption-and-certificates/New-OMEConfiguration.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ New-OMEConfiguration [-Identity] <OrganizationIdParameter>
2222
[-BackgroundColor <String>]
2323
[-DisclaimerText <String>]
2424
[-EmailText <String>]
25+
[-ExternalMailExpiryInDays <Int32>]
2526
[-Image <Byte[]>]
2627
[-IntroductionText <String>]
2728
[-OTPEnabled <$true | $false>]
@@ -113,6 +114,23 @@ Accept pipeline input: False
113114
Accept wildcard characters: False
114115
```
115116
117+
### -ExternalMailExpiryInDays
118+
This parameter is only available with a Microsoft 365 Advanced Message Encryption subscription.
119+
120+
The ExternalMailExpiryInDays parameter specifies the number of days that the encrypted message is available to external recipients in the Microsoft 365 portal. A valid value is an integer from 0 to 730. The value 0 means the messages will never expire. The default value is 0.
121+
122+
```yaml
123+
Type: String
124+
Parameter Sets: Int32
125+
Aliases:
126+
Applicable: Exchange Online
127+
Required: False
128+
Position: Named
129+
Default value: None
130+
Accept pipeline input: False
131+
Accept wildcard characters: False
132+
```
133+
116134
### -Image
117135
The Image parameter identifies and uploads an image that will be displayed in the email message and in the Office 365 portal.
118136

exchange/exchange-ps/exchange/encryption-and-certificates/Set-OMEConfiguration.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Set-OMEConfiguration [-Identity] <OMEConfigurationIdParameter>
2525
[-BackgroundColor <String>]
2626
[-DisclaimerText <String>]
2727
[-EmailText <String>]
28+
[-ExternalMailExpiryInDays <Int32>]
2829
[-Image <Byte[]>]
2930
[-IntroductionText <String>]
3031
[-OTPEnabled <$true | $false>]
@@ -118,6 +119,23 @@ Accept pipeline input: False
118119
Accept wildcard characters: False
119120
```
120121
122+
### -ExternalMailExpiryInDays
123+
This parameter is only available with a Microsoft 365 Advanced Message Encryption subscription.
124+
125+
The ExternalMailExpiryInDays parameter specifies the number of days that the encrypted message is available to external recipients in the Microsoft 365 portal. A valid value is an integer from 0 to 730. The value 0 means the messages will never expire. The default value is 0.
126+
127+
```yaml
128+
Type: String
129+
Parameter Sets: Int32
130+
Aliases:
131+
Applicable: Exchange Online
132+
Required: False
133+
Position: Named
134+
Default value: None
135+
Accept pipeline input: False
136+
Accept wildcard characters: False
137+
```
138+
121139
### -Image
122140
The Image parameter identifies and uploads an image that will be displayed in the email message and in the Office 365 portal.
123141

exchange/exchange-ps/exchange/users-and-groups/Set-User.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@ The Identity parameter specifies the user that you want to modify. You can use a
117117

118118
- GUID
119119

120+
- UserPrincipalName
121+
120122
```yaml
121123
Type: UserIdParameter
122124
Parameter Sets: (All)

skype/docs-conceptual/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
localization_priority: Normal
33
---
44

5-
#Skype for Business cmdlet reference
5+
# Skype for Business cmdlet reference
66

77
Welcome to the Skype for Business PowerShell cmdlet help references. The Skype for Business cmdlets provide the command line interface for server and service administration and management.
88

skype/skype-ps/skype/New-CsAutoAttendantCallHandlingAssociation.md

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.reviewer:
1111
# New-CsAutoAttendantCallHandlingAssociation
1212

1313
## SYNOPSIS
14-
Use the New-CsAutoAttendantCallHandlingAssociation cmdlet to create a new call handling association.
14+
Use the `New-CsAutoAttendantCallHandlingAssociation` cmdlet to create a new call handling association.
1515

1616
## SYNTAX
1717

@@ -20,14 +20,14 @@ New-CsAutoAttendantCallHandlingAssociation -CallFlowId <String> -ScheduleId <Str
2020
```
2121

2222
## DESCRIPTION
23-
The New-CsAutoAttendantCallHandlingAssociation cmdlet creates a new call handling association to be used with the Auto Attendant (AA) service. The OAA service uses call handling associations to determine which call flow to execute when a specific schedule is in effect.
23+
The `New-CsAutoAttendantCallHandlingAssociation` cmdlet creates a new call handling association to be used with the Auto Attendant (AA) service. The OAA service uses call handling associations to determine which call flow to execute when a specific schedule is in effect.
2424

2525
## EXAMPLES
2626

2727
### -------------------------- Example 1 --------------------------
2828
```powershell
2929
$tr = New-CsOnlineTimeRange -Start 09:00 -End 17:00
30-
$schedule = New-CsOnlineSchedule -Name "Business Hours" -WeeklyRecurrentSchedule -MondayHours @($tr)
30+
$schedule = New-CsOnlineSchedule -Name "Business Hours" -WeeklyRecurrentSchedule -MondayHours @($tr) -TuesdayHours @($tr) -WednesdayHours @($tr) -ThursdayHours @($tr) -FridayHours @($tr)
3131
$scheduleId = $schedule.Id
3232
3333
$menuPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "To reach your party by name, enter it now, followed by the pound sign."
@@ -38,7 +38,7 @@ $callFlowId = $callFlow.Id
3838
$callHandlingAssociation = New-CsAutoAttendantCallHandlingAssociation -Type AfterHours -ScheduleId $scheduleId -CallFlowId $callFlowId
3939
```
4040

41-
This example creates the following
41+
This example creates the following:
4242

4343
- a new after-hours schedule
4444
- a new after-hours call flow
@@ -47,7 +47,7 @@ This example creates the following
4747
### -------------------------- Example 2 --------------------------
4848
```powershell
4949
$tr = New-CsOnlineTimeRange -Start 09:00 -End 17:00
50-
$schedule = New-CsOnlineSchedule -Name "Business Hours" -WeeklyRecurrentSchedule -MondayHours @($tr)
50+
$schedule = New-CsOnlineSchedule -Name "Business Hours" -WeeklyRecurrentSchedule -MondayHours @($tr) -TuesdayHours @($tr) -WednesdayHours @($tr) -ThursdayHours @($tr) -FridayHours @($tr)
5151
$scheduleId = $schedule.Id
5252
5353
$menuPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "To reach your party by name, enter it now, followed by the pound sign."
@@ -58,7 +58,7 @@ $callFlowId = $callFlow.Id
5858
$disabledCallHandlingAssociation = New-CsAutoAttendantCallHandlingAssociation -Type AfterHours -ScheduleId $scheduleId -CallFlowId $callFlowId -Disable
5959
```
6060

61-
This example creates the following
61+
This example creates the following:
6262

6363
- a new after-hours schedule
6464
- a new after-hours call flow
@@ -79,7 +79,7 @@ $callFlowId = $callFlow.Id
7979
$callHandlingAssociation = New-CsAutoAttendantCallHandlingAssociation -Type Holiday -ScheduleId $scheduleId -CallFlowId $callFlowId
8080
```
8181

82-
This example creates the following
82+
This example creates the following:
8383

8484
- a new holiday schedule
8585
- a new holiday call flow
@@ -94,7 +94,7 @@ You can create a call flow by using the [`New-CsAutoAttendantCallFlow`](New-CsAu
9494

9595

9696
```yaml
97-
Type: System.String
97+
Type: String
9898
Parameter Sets: (All)
9999
Aliases:
100100
Applicable: Skype for Business Online
@@ -162,9 +162,18 @@ Accept wildcard characters: False
162162
```
163163

164164
### -Tenant
165+
Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example:
166+
167+
-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"
168+
169+
You can return your tenant ID by running this command:
170+
171+
Get-CsTenant | Select-Object DisplayName, TenantID
172+
173+
If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment.
165174

166175
```yaml
167-
Type: System.Guid
176+
Type: Guid
168177
Parameter Sets: (All)
169178
Aliases:
170179
Applicable: Skype for Business Online

skype/skype-ps/skype/Remove-CsTeamsMeetingPolicy.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.reviewer:
1111
# Remove-CsTeamsMeetingPolicy
1212

1313
## SYNOPSIS
14-
Remove-CsTeamsMeetingPolicy \[-Identity\] \<XdsIdentity\> \[-Tenant \<guid\>\] \[-Force\] \[-WhatIf\] \[-Confirm\] \[\<CommonParameters\>\]
14+
The `CsTeamsMeetingPolicy` cmdlets removes a previously created TeamsMeetingPolicy.
1515

1616
## SYNTAX
1717

@@ -21,7 +21,7 @@ Remove-CsTeamsMeetingPolicy [-Tenant <Guid>] [-Identity] <XdsIdentity> [-Force]
2121
```
2222

2323
## DESCRIPTION
24-
Deletes a previously created TeamsMeetingPolicy. Any users with no explicitly assigned policies will then fall back to the default policy in the organization. You cannot delete the global policy from the organization.
24+
Deletes a previously created TeamsMeetingPolicy. Any users with no explicitly assigned policies will then fall back to the default policy in the organization. You cannot delete the global policy from the organization. If you want to remove policies currently assigned to one or more users, you should assign a different policy to them before.
2525

2626
## EXAMPLES
2727

@@ -50,6 +50,7 @@ Accept wildcard characters: False
5050
```
5151
5252
### -Force
53+
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.
5354
5455
```yaml
5556
Type: SwitchParameter
@@ -64,7 +65,7 @@ Accept wildcard characters: False
6465
```
6566
6667
### -Identity
67-
Unique identifier for the teams meeting policy to be removed. To remove the global policy, use this syntax: -Identity global. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy, use this syntax: -Identity StudentMeetingPolicy .
68+
Unique identifier for the teams meeting policy to be removed. To remove the global policy, use this syntax: -Identity global. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy, use this syntax: -Identity StudentMeetingPolicy.
6869
6970
```yaml
7071
Type: XdsIdentity
@@ -79,6 +80,15 @@ Accept wildcard characters: False
7980
```
8081
8182
### -Tenant
83+
Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example:
84+
85+
-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"
86+
87+
You can return your tenant ID by running this command:
88+
89+
Get-CsTenant | Select-Object DisplayName, TenantID
90+
91+
If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment.
8292
8393
```yaml
8494
Type: Guid

skype/skype-ps/skype/Set-CsOnlineVoicemailUserSettings.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ Set-CsOnlineVoicemailUserSettings -Identity <String> [-VoicemailEnabled <Boolean
2424
The Set-CsOnlineVoicemailUserSettings cmdlet lets tenant admin modify the online voicemail user settings of a specific user in the organization. New online voicemail user settings of the user would be returned after executing.
2525
For example, tenant admin could enable/disable voicemail, change voicemail prompt language, modify out-of-office voicemail greeting settings, or setup simple call answer rules. Only those properties that tenant admin have actually provided with be modified. If an online voicemail user setting was not set by tenant admin, it would remain the old value after this cmdlet has been executed.
2626

27-
**NOTE**
28-
- **This cmdlet is currently available to PREVIEW customers only.**
2927

3028
## EXAMPLES
3129

0 commit comments

Comments
 (0)