Skip to content

Commit 3462f17

Browse files
committed
Merge branch 'master' into live
2 parents cd781da + 9111adf commit 3462f17

20 files changed

+64
-64
lines changed

skype/skype-ps/skype/Export-CsOrganizationalAutoAttendantHolidays.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Export-CsOrganizationalAutoAttendantHolidays
99

1010
## SYNOPSIS
11-
Use Export-CsOrganizationalAutoAttendantHolidays cmdlet to export holiday schedules of an existing organizational auto attendant (OAA). The data is exported as a byte array from the cmdlet, which can be dumped to disk as a CSV file and can later be imported using the Import-CsOrganizationalAutoAttendantHolidays cmdlet.
11+
Use Export-CsOrganizationalAutoAttendantHolidays cmdlet to export holiday schedules of an existing Auto Attendant (AA). The data is exported as a byte array from the cmdlet, which can be dumped to disk as a CSV file and can later be imported using the Import-CsOrganizationalAutoAttendantHolidays cmdlet.
1212

1313
## SYNTAX
1414

@@ -17,7 +17,7 @@ Export-CsOrganizationalAutoAttendantHolidays [-PrimaryUri] <Uri> [-Tenant <Guid>
1717
```
1818

1919
## DESCRIPTION
20-
The Export-CsOrganizationalAutoAttendantHolidays cmdlet and the Import-CsOrganizationalAutoAttendantHolidays cmdlet enable you to export holiday schedules in your organizational auto attendant and then later import that information. This can be extremely useful in a situation where you need to configure same holiday sets in multiple organizational auto attendants.
20+
The Export-CsOrganizationalAutoAttendantHolidays cmdlet and the Import-CsOrganizationalAutoAttendantHolidays cmdlet enable you to export holiday schedules in your auto attendant and then later import that information. This can be extremely useful in a situation where you need to configure same holiday sets in multiple auto attendants.
2121

2222
The Export-CsOrganizationalAutoAttendantHolidays cmdlet returns the holiday schedule information in serialized form (as a byte array). The caller can then write the bytes to the disk to obtain a CSV file. Similarly, the Import-CsOrganizationalAutoAttendantHolidays cmdlet accepts the holiday schedule information as a byte array, which can be read from the aforementioned CSV file. The first line of the CSV file is considered a header record and is always ignored.
2323

@@ -32,7 +32,7 @@ The Export-CsOrganizationalAutoAttendantHolidays cmdlet returns the holiday sche
3232
- StartDateTimeX and EndDateTimeX specify a date/time range for the holiday and are optional. If no date-time ranges are defined, then the holiday is imported without any date/time ranges. They follow the same format as New-CsOnlineDateTimeRange cmdlet.
3333
- EndDateTimeX is optional. If it is not specified, the end bound of the date time range is set to 00:00 of the day after the start date.
3434
- The first line of the CSV file is considered a header record and is always ignored by Import-CsOrganizationalAutoAttendantHolidays cmdlet.
35-
- If the destination organizational auto attendant for the import already contains a call flow or schedule by the same name as one of the holidays being imported, the corresponding CSV record is skipped.
35+
- If the destination auto attendant for the import already contains a call flow or schedule by the same name as one of the holidays being imported, the corresponding CSV record is skipped.
3636
- For holidays that are successfully imported, a default call flow is created which is configured without any greeting and simply disconnects the call on being executed.
3737

3838
## EXAMPLES
@@ -43,12 +43,12 @@ $bytes = Export-CsOrganizationalAutoAttendantHolidays -PrimaryUri sip:mainoaa@co
4343
[System.IO.File]::WriteAllBytes("C:\Exports\Holidays.csv", $bytes)
4444
```
4545

46-
In this example, the Export-CsOrganizationalAutoAttendantHolidays cmdlet is used to export holiday schedules of an organizational auto attendant with Primary URI of sip:mainoaa@contoso.com. The exported bytes are then written to a file with the path "C:\Exports\Holidays.csv".
46+
In this example, the Export-CsOrganizationalAutoAttendantHolidays cmdlet is used to export holiday schedules of an auto attendant with Primary URI of sip:mainoaa@contoso.com. The exported bytes are then written to a file with the path "C:\Exports\Holidays.csv".
4747

4848
## PARAMETERS
4949

5050
### -PrimaryUri
51-
The Primary URI represents the SIP address of the organizational auto attendant whose holiday schedules are to be exported.
51+
The Primary URI represents the SIP address of the auto attendant whose holiday schedules are to be exported.
5252

5353
```yaml
5454
Type: System.Uri

skype/skype-ps/skype/Get-CsOrganizationalAutoAttendant.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Get-CsOrganizationalAutoAttendant
99

1010
## SYNOPSIS
11-
Use the Get-CsOrganizationalAutoAttendant cmdlet to get information about Organizational Auto Attendants (OAAs).
11+
Use the Get-CsOrganizationalAutoAttendant cmdlet to get information about Auto Attendants (AAs).
1212

1313
## SYNTAX
1414

@@ -40,14 +40,14 @@ This example gets the OAAs that has the Primary URI of sip:mainoaa@contoso.com.
4040
Get-CsOrganizationalAutoAttendant -First 10
4141
```
4242

43-
This example gets the first ten organizational auto attendants configured for use in the organization.
43+
This example gets the first ten auto attendants configured for use in the organization.
4444

4545
### -------------------------- Example 4 --------------------------
4646
```
4747
Get-CsOrganizationalAutoAttendant -Skip 5 -First 10
4848
```
4949

50-
This example skips initial 5 organizational auto attendants and gets the next 10 OAAs configured for use in the organization.
50+
This example skips initial 5 auto attendants and gets the next 10 OAAs configured for use in the organization.
5151

5252

5353
## PARAMETERS
@@ -69,7 +69,7 @@ Accept wildcard characters: False
6969
```
7070
7171
### -First
72-
The First parameter indicates the maximum number of organizational auto attendants to retrieve as the result. It is intended to be used for pagination purposes.
72+
The First parameter indicates the maximum number of auto attendants to retrieve as the result. It is intended to be used for pagination purposes.
7373
7474
```yaml
7575
Type: System.UInt64
@@ -85,7 +85,7 @@ Accept wildcard characters: False
8585
```
8686
8787
### -Skip
88-
The Skip parameter indicates the number of initial organizational auto attendants to skip in the result. It is intended to be used for pagination purposes.
88+
The Skip parameter indicates the number of initial auto attendants to skip in the result. It is intended to be used for pagination purposes.
8989
9090
```yaml
9191
Type: System.UInt64
@@ -101,7 +101,7 @@ Accept wildcard characters: False
101101
```
102102
103103
### -IncludeStatus
104-
If specified, the status records for each organizational auto attendant in the result set are also retrieved.
104+
If specified, the status records for each auto attendant in the result set are also retrieved.
105105
106106
```yaml
107107
Type: SwitchParameter
@@ -117,7 +117,7 @@ Accept wildcard characters: False
117117
```
118118
119119
### -ApplicationId
120-
Specifies a custom application ID to use for organizational auto attendants. This parameter is reserved for Microsoft internal use only.
120+
Specifies a custom application ID to use for auto attendants. This parameter is reserved for Microsoft internal use only.
121121
122122
```yaml
123123
Type: System.Guid

skype/skype-ps/skype/Get-CsOrganizationalAutoAttendantHolidays.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Get-CsOrganizationalAutoAttendantHolidays
99

1010
## SYNOPSIS
11-
Use Get-CsOrganizationalAutoAttendantHolidays cmdlet to get the holiday information for an existing Organizational Auto Attendant (OAA).
11+
Use Get-CsOrganizationalAutoAttendantHolidays cmdlet to get the holiday information for an existing Auto Attendant (AA).
1212

1313
## SYNTAX
1414

@@ -17,7 +17,7 @@ Get-CsOrganizationalAutoAttendantHolidays [-PrimaryUri] <Uri> [-Years <List>] [-
1717
```
1818

1919
## DESCRIPTION
20-
The Get-CsOrganizationalAutoAttendantHolidays provides a convenient way to visualize the information of all the holidays contained within an organizational auto attendant.
20+
The Get-CsOrganizationalAutoAttendantHolidays provides a convenient way to visualize the information of all the holidays contained within an auto attendant.
2121

2222
**NOTE**
2323
- **The Holiday feature of auto attendants is currently available to PREVIEW customers only.**
@@ -29,34 +29,34 @@ The Get-CsOrganizationalAutoAttendantHolidays provides a convenient way to visua
2929
Get-CsOrganizationalAutoAttendantHolidays -PrimaryUri "sip:mainoaa@contoso.com"
3030
```
3131

32-
In this example, the Get-CsOrganizationalAutoAttendantHolidays cmdlet is used to get all holidays in an organizational auto attendant with Primary URI of sip:mainoaa@contoso.com.
32+
In this example, the Get-CsOrganizationalAutoAttendantHolidays cmdlet is used to get all holidays in an auto attendant with Primary URI of sip:mainoaa@contoso.com.
3333

3434
### -------------------------- Example 2 --------------------------
3535
```
3636
Get-CsOrganizationalAutoAttendantHolidays -PrimaryUri "sip:mainoaa@contoso.com" -Years @(2017)
3737
```
3838

39-
In this example, the Get-CsOrganizationalAutoAttendantHolidays cmdlet is used to get all holidays in year 2017 in an organizational auto attendant with Primary URI of sip:mainoaa@contoso.com.
39+
In this example, the Get-CsOrganizationalAutoAttendantHolidays cmdlet is used to get all holidays in year 2017 in an auto attendant with Primary URI of sip:mainoaa@contoso.com.
4040

4141
### -------------------------- Example 3 --------------------------
4242
```
4343
Get-CsOrganizationalAutoAttendantHolidays -PrimaryUri "sip:mainoaa@contoso.com" –Years @(2017) -Name @("Christmas")
4444
```
4545

46-
In this example, the Get-CsOrganizationalAutoAttendantHolidays cmdlet is used to get holiday named Christmas in the year 2017 in an organizational auto attendant with Primary URI of sip:mainoaa@contoso.com.
46+
In this example, the Get-CsOrganizationalAutoAttendantHolidays cmdlet is used to get holiday named Christmas in the year 2017 in an auto attendant with Primary URI of sip:mainoaa@contoso.com.
4747

4848
### -------------------------- Example 4 --------------------------
4949
```
5050
Get-CsOrganizationalAutoAttendantHolidays -PrimaryUri "sip:mainoaa@contoso.com" | Format-Table -Wrap -AutoSize
5151
```
5252

53-
In this example, the Get-CsOrganizationalAutoAttendantHolidays cmdlet is used to retrieve all holidays in an organizational auto attendant with Primary URI of sip:mainoaa@contoso.com and the result is formatted as a table.
53+
In this example, the Get-CsOrganizationalAutoAttendantHolidays cmdlet is used to retrieve all holidays in an auto attendant with Primary URI of sip:mainoaa@contoso.com and the result is formatted as a table.
5454

5555

5656
## PARAMETERS
5757

5858
### -PrimaryUri
59-
The PrimaryUri parameter represents the SIP address of the organizational auto attendant whose holidays are to be retrieved.
59+
The PrimaryUri parameter represents the SIP address of the auto attendant whose holidays are to be retrieved.
6060

6161
```yaml
6262
Type: System.Uri

skype/skype-ps/skype/Get-CsOrganizationalAutoAttendantStatus.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Get-CsOrganizationalAutoAttendantStatus
99

1010
## SYNOPSIS
11-
Use Get-CsOrganizationalAutoAttendantStatus cmdlet to get the status of an Organizational Auto Attendant (OAA) provisioning.
11+
Use Get-CsOrganizationalAutoAttendantStatus cmdlet to get the status of an Auto Attendant (AA) provisioning.
1212

1313

1414
## SYNTAX
@@ -19,7 +19,7 @@ Get-CsOrganizationalAutoAttendantStatus [-PrimaryUri] <Uri> [-IncludeResources <
1919

2020

2121
## DESCRIPTION
22-
This cmdlet provides a way to return the provisioning status of an organizational auto attendant configured for use in your organization.
22+
This cmdlet provides a way to return the provisioning status of an auto attendant configured for use in your organization.
2323

2424

2525
## EXAMPLES
@@ -29,19 +29,19 @@ This cmdlet provides a way to return the provisioning status of an organizationa
2929
Get-CsOrganizationalAutoAttendantStatus -PrimaryUri "sip:mainoaa@contoso.com"
3030
```
3131

32-
In Example 1, the Get-CsOrganizationalAutoAttendantStatus cmdlet is used to get status records for all resources of an organizational auto attendant with Primary URI of sip:mainoaa@contoso.com.
32+
In Example 1, the Get-CsOrganizationalAutoAttendantStatus cmdlet is used to get status records for all resources of an auto attendant with Primary URI of sip:mainoaa@contoso.com.
3333

3434
### -------------------------- Example 2 --------------------------
3535
```
3636
Get-CsOrganizationalAutoAttendantStatus -PrimaryUri sip:mainoaa@contoso.com -IncludeResources @("AudioFile")
3737
```
3838

39-
In Example 2, the Get-CsOrganizationalAutoAttendantStatus cmdlet is used to get status records pertaining to audio files only of an organizational auto attendant with Primary URI of sip:mainoaa@contoso.com.
39+
In Example 2, the Get-CsOrganizationalAutoAttendantStatus cmdlet is used to get status records pertaining to audio files only of an auto attendant with Primary URI of sip:mainoaa@contoso.com.
4040

4141
## PARAMETERS
4242

4343
### -PrimaryUri
44-
The Primary URI represents the SIP address of the organizational auto attendant whose provisioning status is to be retrieved.
44+
The Primary URI represents the SIP address of the auto attendant whose provisioning status is to be retrieved.
4545

4646
```yaml
4747
Type: System.Uri
@@ -57,7 +57,7 @@ Accept wildcard characters: False
5757
```
5858
5959
### -IncludeResources
60-
The IncludeResources parameter identities the organizational auto attendant resources whose status is to be retrieved. Available resources are:
60+
The IncludeResources parameter identities the auto attendant resources whose status is to be retrieved. Available resources are:
6161
- AudioFile: Indicates status for audio files used by OAA.
6262
- DialByNameVoiceResponses: Indicates status for speech recognition when using dial-by-name (directory lookup) feature with OAA.
6363
- SipProvisioning: Indicates status for calling OAA through its SIP (Primary) URI.
@@ -77,7 +77,7 @@ Accept wildcard characters: False
7777
```
7878
7979
### -ApplicationId
80-
Specifies a custom application ID to use for organizational auto attendants. This parameter is reserved for Microsoft internal use only.
80+
Specifies a custom application ID to use for auto attendants. This parameter is reserved for Microsoft internal use only.
8181
8282
```yaml
8383
Type: System.Guid

skype/skype-ps/skype/Get-CsOrganizationalAutoAttendantSupportedLanguage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Get-CsOrganizationalAutoAttendantSupportedLanguage
99

1010
## SYNOPSIS
11-
The Get-CsOrganizationalAutoAttendantSupportedLanguage cmdlet gets languages that are supported by the Organizational Auto Attendant (OAA) service.
11+
The Get-CsOrganizationalAutoAttendantSupportedLanguage cmdlet gets languages that are supported by the Auto Attendant (AA) service.
1212

1313
## SYNTAX
1414

skype/skype-ps/skype/Get-CsOrganizationalAutoAttendantSupportedTimeZone.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Get-CsOrganizationalAutoAttendantSupportedTimeZone
99

1010
## SYNOPSIS
11-
The Get-CsOrganizationalAutoAttendantSupportedTimeZone cmdlet gets supported time zones for the Organizational Auto Attendant (OAA) service.
11+
The Get-CsOrganizationalAutoAttendantSupportedTimeZone cmdlet gets supported time zones for the Auto Attendant (AA) service.
1212

1313
## SYNTAX
1414

skype/skype-ps/skype/Get-CsOrganizationalAutoAttendantTenantInformation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Get-CsOrganizationalAutoAttendantTenantInformation
99

1010
## SYNOPSIS
11-
Gets the default tenant information for Organizational Auto Attendant (OAA) feature.
11+
Gets the default tenant information for Auto Attendant (AA) feature.
1212

1313
## SYNTAX
1414

@@ -17,7 +17,7 @@ Get-CsOrganizationalAutoAttendantTenantInformation [-Tenant <Guid>] [<CommonPara
1717
```
1818

1919
## DESCRIPTION
20-
The Get-CsOrganizationalAutoAttendantTenantInformation cmdlet gets the default tenant information for Organizational Auto Attendant (OAA) feature.
20+
The Get-CsOrganizationalAutoAttendantTenantInformation cmdlet gets the default tenant information for Auto Attendant (AA) feature.
2121

2222
## EXAMPLES
2323

@@ -26,7 +26,7 @@ The Get-CsOrganizationalAutoAttendantTenantInformation cmdlet gets the default t
2626
Get-CsOrganizationalAutoAttendantTenantInformation
2727
```
2828

29-
Gets the default organizational auto attendant information for the logged in tenant.
29+
Gets the default auto attendant information for the logged in tenant.
3030

3131

3232
## PARAMETERS

skype/skype-ps/skype/Import-CsOrganizationalAutoAttendantHolidays.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Import-CsOrganizationalAutoAttendantHolidays
99

1010
## SYNOPSIS
11-
Use Import-CsOrganizationalAutoAttendantHolidays cmdlet to import holiday schedules of an existing organizational auto attendant (OAA) that were previously exported using the Export-CsOrganizationalAutoAttendantHolidays cmdlet.
11+
Use Import-CsOrganizationalAutoAttendantHolidays cmdlet to import holiday schedules of an existing Auto Attendant (AA) that were previously exported using the Export-CsOrganizationalAutoAttendantHolidays cmdlet.
1212

1313
## SYNTAX
1414

@@ -17,7 +17,7 @@ Import-CsOrganizationalAutoAttendantHolidays [-PrimaryUri] <Uri> -Input <byte[]>
1717
```
1818

1919
## DESCRIPTION
20-
The Export-CsOrganizationalAutoAttendantHolidays cmdlet and the Import-CsOrganizationalAutoAttendantHolidays cmdlet enable you to export holiday schedules in your organizational auto attendant and then later import that information. This can be extremely useful in a situation where you need to configure same holiday sets in multiple organizational auto attendants.
20+
The Export-CsOrganizationalAutoAttendantHolidays cmdlet and the Import-CsOrganizationalAutoAttendantHolidays cmdlet enable you to export holiday schedules in your auto attendant and then later import that information. This can be extremely useful in a situation where you need to configure same holiday sets in multiple auto attendants.
2121

2222
The Export-CsOrganizationalAutoAttendantHolidays cmdlet returns the holiday schedule information in serialized form (as a byte array). The caller can then write the bytes to the disk to obtain a CSV file. Similarly, the Import-CsOrganizationalAutoAttendantHolidays cmdlet accepts the holiday schedule information as a byte array, which can be read from the aforementioned CSV file. The first line of the CSV file is considered a header record and is always ignored.
2323

@@ -32,7 +32,7 @@ The Export-CsOrganizationalAutoAttendantHolidays cmdlet returns the holiday sche
3232
- StartDateTimeX and EndDateTimeX specify a date/time range for the holiday and are optional. If no date-time ranges are defined, then the holiday is imported without any date/time ranges. They follow the same format as New-CsOnlineDateTimeRange cmdlet.
3333
- EndDateTimeX is optional. If it is not specified, the end bound of the date time range is set to 00:00 of the day after the start date.
3434
- The first line of the CSV file is considered a header record and is always ignored by Import-CsOrganizationalAutoAttendantHolidays cmdlet.
35-
- If the destination organizational auto attendant for the import already contains a call flow or schedule by the same name as one of the holidays being imported, the corresponding CSV record is skipped.
35+
- If the destination auto attendant for the import already contains a call flow or schedule by the same name as one of the holidays being imported, the corresponding CSV record is skipped.
3636
- For holidays that are successfully imported, a default call flow is created which is configured without any greeting and simply disconnects the call on being executed.
3737

3838
## EXAMPLES
@@ -43,20 +43,20 @@ $bytes = [System.IO.File]::ReadAllBytes("C:\Imports\Holidays.csv")
4343
Import-CsOrganizationalAutoAttendantHolidays -PrimaryUri sip:mainoaa@contoso.com -Input $bytes
4444
```
4545

46-
In this example, the Import-CsOrganizationalAutoAttendantHolidays cmdlet is used to import holiday schedule information from a file at path “C:\Imports\Holidays.csv” to an organizational auto attendant with Primary URI of sip:mainoaa@contoso.com.
46+
In this example, the Import-CsOrganizationalAutoAttendantHolidays cmdlet is used to import holiday schedule information from a file at path “C:\Imports\Holidays.csv” to an auto attendant with Primary URI of sip:mainoaa@contoso.com.
4747

4848
### -------------------------- Example 2 --------------------------
4949
```
5050
$bytes = [System.IO.File]::ReadAllBytes("C:\Imports\Holidays.csv")
5151
Import-CsOrganizationalAutoAttendantHolidays -PrimaryUri sip:mainoaa@contoso.com -Input $bytes | Format-Table -Wrap -AutoSize
5252
```
5353

54-
In this example, the Import-CsOrganizationalAutoAttendantHolidays cmdlet is used to import holiday schedule information from a file at path “C:\Imports\Holidays.csv” to an organizational auto attendant with Primary URI of sip:mainoaa@contoso.com. The result of the import process is formatted as a table.
54+
In this example, the Import-CsOrganizationalAutoAttendantHolidays cmdlet is used to import holiday schedule information from a file at path “C:\Imports\Holidays.csv” to an auto attendant with Primary URI of sip:mainoaa@contoso.com. The result of the import process is formatted as a table.
5555

5656
## PARAMETERS
5757

5858
### -PrimaryUri
59-
The Primary URI represents the SIP address of the organizational auto attendant in where the holiday schedule information is to be imported.
59+
The Primary URI represents the SIP address of the auto attendant in where the holiday schedule information is to be imported.
6060

6161
```yaml
6262
Type: System.Uri

0 commit comments

Comments
 (0)