Monday, April 27, 2020

Create a new office 365 application instance for an Auto Attendant and Call Queue


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#http://hilite.me/
Import-Module SkypeOnlineConnector
Import-PSSession $sfbSession

$userCredential = Get-Credential
$sfbSession = New-CsOnlineSession -Credential $userCredential

#For new application instance for an Auto Attendant
New-CsOnlineApplicationInstance -UserPrincipalName Test.AutoAttendent@test.com -ApplicationId ce933385-9390-45d1-9512-c8d228074e07 -DisplayName "Test Auto Attendent"

#For new application instance for a Call Queue
New-CsOnlineApplicationInstance -UserPrincipalName Test.Queue@test.com -ApplicationId 11cd3e2e-fccb-42ad-ad00-878b93575e07 -DisplayName "Test Call Queue"

No comments:

Post a Comment

HTML

Script:

JS