Skip to content

Commit b5dd700

Browse files
authored
Removed hyphen lines from headings
The long lines of hyphens in the headings doesn't look so good on docs.microsoft.com.
1 parent cd77a5f commit b5dd700

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

skype/skype-ps/skype/New-CsAutoAttendantCallableEntity.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,37 +37,37 @@ In order to setup a shared voicemail, an Office 365 Group that can receive exter
3737

3838
## EXAMPLES
3939

40-
### -------------------------- Example 1 --------------------------
40+
### Example 1
4141
```powershell
4242
$callableEntity = New-CsAutoAttendantCallableEntity -Identity "9bad1a25-3203-5207-b34d-1bd933b867a5" -Type User
4343
```
4444

4545
This example creates a user callable entity.
4646

47-
### -------------------------- Example 2 --------------------------
47+
### Example 2
4848
```powershell
4949
$callableEntity = New-CsAutoAttendantCallableEntity -Identity "tel:+1234567890" -Type ExternalPSTN
5050
```
5151

5252
This example creates an ExternalPSTN callable entity.
5353

54-
### -------------------------- Example 3 --------------------------
54+
### Example 3
5555
```powershell
5656
$operatorObjectId = (Get-CsOnlineUser [email protected]).ObjectId
5757
$callableEntity = New-CsAutoAttendantCallableEntity -Identity $operatorObjectId -Type User
5858
```
5959

6060
This example gets a user object using Get-CsOnlineUser cmdlet. We then use the AAD ObjectId of that user object to create a user callable entity.
6161

62-
### -------------------------- Example 4 --------------------------
62+
### Example 4
6363
```powershell
6464
$callableEntityId = (Find-CsOnlineApplicationInstance -SearchQuery "Main Auto Attendant") -MaxResults 1 | Select-Object -Property Id
6565
$callableEntity = New-CsAutoAttendantCallableEntity -Identity $callableEntityId -Type ApplicationEndpoint
6666
```
6767

6868
This example gets an application instance by name using Find-CsOnlineApplicationInstance cmdlet. We then use the AAD ObjectId of that application instance to create an application endpoint callable entity.
6969

70-
### -------------------------- Example 5 --------------------------
70+
### Example 5
7171
```powershell
7272
$callableEntityGroup = Find-CsGroup -SearchQuery "Main Auto Attendant" -ExactMatchOnly $true -MailEnabledOnly $true
7373
$callableEntity = New-CsAutoAttendantCallableEntity -Identity $callableEntityGroup -Type SharedVoicemail -EnableTranscription

0 commit comments

Comments
 (0)