You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `Set-SPTrustedRootAuthority` cmdlet creates a new trusted root authority.
35
-
If a certificate file is used, the certificate must be an X509 certificate with private keys, otherwise an exception is raised.
35
+
If a certificate file is used, the certificate must be an X509 certificate without private keys, otherwise an exception is raised.
36
36
37
37
For permissions and the most current information about Windows PowerShell for SharePoint Products, see the online documentation at [SharePoint Server Cmdlets](https://docs.microsoft.com/powershell/sharepoint/sharepoint-server/sharepoint-server-cmdlets).
38
38
@@ -41,8 +41,9 @@ For permissions and the most current information about Windows PowerShell for Sh
Copy file name to clipboardExpand all lines: skype/skype-ps/skype/New-CsAutoAttendant.md
+48Lines changed: 48 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -203,6 +203,54 @@ We can see when we ran the Get-CsOnlineSchedule cmdlet at the end, to get the _C
203
203
204
204
Removing an association between an AA and a schedule is as simple as deleting the CallHandlingAssociation of that schedule in the AA you want to modify. Please refer to [Set-CsAutoAttendant](Set-CsAutoAttendant.md) cmdlet documentation for examples on how to do that.
205
205
206
+
### -------------------------- Example 4 --------------------------
207
+
```powershell
208
+
$aaName = "Main Auto Attendant"
209
+
$language = "en-US"
210
+
$greetingText = "Welcome to Contoso"
211
+
$mainMenuText = "To reach your party by name, say it now. To talk to Sales, please press 1. To talk to User2 press 2. Please press 0 for operator"
212
+
$afterHoursText = "Sorry Contoso is closed. Please call back during week days from 7AM to 8PM. Goodbye!"
0 commit comments