Skip to content

Commit c58d9be

Browse files
authored
Merge branch 'master' into patch-1
2 parents 19dafd8 + 23fda50 commit c58d9be

File tree

3 files changed

+33
-12
lines changed

3 files changed

+33
-12
lines changed

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/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

0 commit comments

Comments
 (0)