-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Update Import-CsOnlineAudioFile.md #5633
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Docs Build status updates of commit ea465dd: 🕙 Full build: the average full build time is 17 min(s) 31 sec(s), this is based on the last 1000 build(s) for this repository. |
Docs Build status updates of commit ea465dd: ✅ Validation status: passed
For more details, please refer to the build report. Note: If you changed an existing file name or deleted a file, broken links in other files to the deleted or renamed file are listed only in the full build report. |
@@ -32,7 +32,16 @@ $content = Get-Content "C:\Media\Welcome.wav" -Encoding byte -ReadCount 0 | |||
$audioFile = Import-CsOnlineAudioFile -ApplicationId "OrgAutoAttendant" -FileName "Hello.wav" -Content $content | |||
``` | |||
|
|||
This example creates a new audio file using the WAV content that has a filename of Hello.wav to be used with organizational auto attendants. | |||
This example creates a new audio file using the WAV content that has a filename of Hello.wav to be used with organizational auto attendants. The stored variable, $audioFile, will be used when running other cmdlets to update the audio file for Auto Attendant, for example: [New-CsAutoAttendantPrompt] (https://docs.microsoft.com/en-us/powershell/module/skype/new-csautoattendantprompt?view=skype-ps) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
en-us
needs to be removed.
$audioFile = Import-CsOnlineAudioFile -ApplicationId "HuntGroup" -FileName "MOH.wav" -Content $content | ||
``` | ||
|
||
This example creates a new audio file using the WAV content that has a filename of MOH.wav to be used as a Music On Hold file with a Call Queue. The stored variable, $audioFile, will be used with [Set-CsCallQueue] (https://docs.microsoft.com/en-us/powershell/module/skype/set-cscallqueue?view=skype-ps) to provide the audio file id. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also remove en-us
from here.
Co-authored-by: Dario Woitasen <[email protected]>
Co-authored-by: Dario Woitasen <[email protected]>
Docs Build status updates of commit d6ab9b1: 🕙 Full build: the average full build time is 17 min(s) 35 sec(s), this is based on the last 1000 build(s) for this repository. |
Docs Build status updates of commit d6ab9b1: ✅ Validation status: passed
For more details, please refer to the build report. Note: If you changed an existing file name or deleted a file, broken links in other files to the deleted or renamed file are listed only in the full build report. |
Docs Build status updates of commit d0c970a: 🕙 Full build: the average full build time is 17 min(s) 36 sec(s), this is based on the last 1000 build(s) for this repository. |
Docs Build status updates of commit d0c970a: ✅ Validation status: passed
For more details, please refer to the build report. Note: If you changed an existing file name or deleted a file, broken links in other files to the deleted or renamed file are listed only in the full build report. |
@kenwith cc: @roykuntz
Updating to example 1 to refer to related AA cmdlet where stored variable is used. Added example 2 for call queue with reference to the set-cscallqueue cmdlet which was also updated to correctly reflect need to provide ID using stored variable.