Skip to content

Commit f4bef26

Browse files
authored
Merge branch 'master' into patch-140
2 parents 0947c08 + 771c22e commit f4bef26

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ The New-CsAutoAttendantCallableEntity cmdlet lets you create a callable entity f
2626

2727
- User
2828
- ApplicationEndpoint
29+
- SharedVoicemail
30+
31+
**NOTE**
32+
33+
In order to setup a shared voicemail, an Office 365 Group that can receive external emails is required.
2934

3035
## EXAMPLES
3136

@@ -59,6 +64,14 @@ This example gets a user object using Get-CsOnlineUser cmdlet. We then use the A
5964

6065
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.
6166

67+
### -------------------------- Example 5 --------------------------
68+
```powershell
69+
$callableEntityGroup=Find-CsGroup -SearchQuery "Main Auto Attendant" -ExactMatchOnly $true -MailEnabledOnly $true
70+
$callableEntity = New-CsAutoAttendantCallableEntity -Identity $callableEntityId -Type SharedVoicemail -EnableTranscription
71+
```
72+
73+
This example gets an Office 365 group by name using Find-CsGroup cmdlet. Then the Guid of that group is used to create a shared voicemail callable entity that supports transcription.
74+
6275
## PARAMETERS
6376

6477
### -Identity
@@ -115,6 +128,20 @@ Accept pipeline input: False
115128
Accept wildcard characters: False
116129
```
117130
131+
### -EnableTranscription
132+
```yaml
133+
Type: SwitchParameter
134+
Parameter Sets: (All)
135+
Aliases:
136+
Applicable: Skype for Business Online
137+
138+
Required: False
139+
Position: Named
140+
Default value: None
141+
Accept pipeline input: False
142+
Accept wildcard characters: False
143+
```
144+
118145
### CommonParameters
119146
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).`
120147

0 commit comments

Comments
 (0)