Skip to content

Commit fc2af65

Browse files
authored
Merge pull request #7856 from CLYVR/patch-3
Update New-CsAutoAttendantCallableEntity.md
2 parents 2f19ea8 + b5dd700 commit fc2af65

File tree

1 file changed

+22
-6
lines changed

1 file changed

+22
-6
lines changed

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

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The New-CsAutoAttendantCallableEntity cmdlet lets you create a callable entity.
1818
## SYNTAX
1919

2020
```powershell
21-
New-CsAutoAttendantCallableEntity -Identity <String> -Type <User | OrganizationalAutoAttendant | HuntGroup | ApplicationEndpoint | ExternalPstn | SharedVoicemail> [-Tenant <Guid>] [<CommonParameters>]
21+
New-CsAutoAttendantCallableEntity -Identity <String> -Type <User | OrganizationalAutoAttendant | HuntGroup | ApplicationEndpoint | ExternalPstn | SharedVoicemail> [-Tenant <Guid>] [-EnableTranscription] [-EnableSharedVoicemailSystemPromptSuppression] [<CommonParameters>]
2222
```
2323

2424
## DESCRIPTION
@@ -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
@@ -150,6 +150,22 @@ Accept pipeline input: False
150150
Accept wildcard characters: False
151151
```
152152
153+
### -EnableSharedVoicemailSystemPromptSuppression
154+
Suppresses the "Please leave a message after the tone" system prompt when transferring to shared voicemail.
155+
156+
```yaml
157+
Type: SwitchParameter
158+
Parameter Sets: (All)
159+
Aliases:
160+
Applicable: Skype for Business Online
161+
162+
Required: False
163+
Position: Named
164+
Default value: None
165+
Accept pipeline input: False
166+
Accept wildcard characters: False
167+
```
168+
153169
### CommonParameters
154170
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).`
155171

0 commit comments

Comments
 (0)