diff --git a/skype/skype-ps/skype/New-CsAutoAttendantCallableEntity.md b/skype/skype-ps/skype/New-CsAutoAttendantCallableEntity.md index 804a7328a9..dbfdddd4ef 100644 --- a/skype/skype-ps/skype/New-CsAutoAttendantCallableEntity.md +++ b/skype/skype-ps/skype/New-CsAutoAttendantCallableEntity.md @@ -26,6 +26,11 @@ The New-CsAutoAttendantCallableEntity cmdlet lets you create a callable entity f - User - ApplicationEndpoint +- SharedVoicemail + +**NOTE** + +In order to setup a shared voicemail, an Office 365 Group that can receive external emails is required. ## EXAMPLES @@ -59,6 +64,14 @@ This example gets a user object using Get-CsOnlineUser cmdlet. We then use the A 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. +### -------------------------- Example 5 -------------------------- +```powershell +$callableEntityGroup=Find-CsGroup -SearchQuery "Main Auto Attendant" -ExactMatchOnly $true -MailEnabledOnly $true + $callableEntity = New-CsAutoAttendantCallableEntity -Identity $callableEntityId -Type SharedVoicemail -EnableTranscription +``` + +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. + ## PARAMETERS ### -Identity @@ -115,6 +128,20 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EnableTranscription +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: +Applicable: Skype for Business Online + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### CommonParameters 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).`