Skip to content

Commit d836b38

Browse files
authored
Merge pull request MicrosoftDocs#8560 from CLYVR/patch-4
Create export-csonlineaudiofile.md
2 parents 72cdbaf + d6afa52 commit d836b38

File tree

5 files changed

+115
-3
lines changed

5 files changed

+115
-3
lines changed

skype/skype-ps/skype/Get-CsOnlineAudioFile.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,10 @@ The cmdlet is available in Teams PS module 2.4.0-preview or later.
125125
If you call the cmdlet without having uploaded any audio files, with a non-existing Identity or with an illegal ApplicationId, you will receive a generic error message. In addition, the ApplicationId is case sensitive.
126126
127127
## RELATED LINKS
128+
[Export-CsOnlineAudioFile](Export-CsOnlineAudioFile.md)
129+
128130
[Import-CsOnlineAudioFile](Import-CsOnlineAudioFile.md)
129131
132+
[New-CsOnlineAudioFile](New-CsOnlineAudioFile.md)
133+
130134
[Remove-CsOnlineAudioFile](Remove-CsOnlineAudioFile.md)

skype/skype-ps/skype/Import-CsOnlineAudioFile.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ Import-CsOnlineAudioFile -ApplicationId <OrgAutoAttendant | HuntGroup | TenantGl
2424
## DESCRIPTION
2525
The Import-CsOnlineAudioFile cmdlet uploads a new audio file for use with the Auto Attendant (AA), Call Queue (CQ) service or Music on Hold for Microsoft Teams.
2626

27-
Please note that you can't export the audio file after import, you can only remove it.
28-
2927
## EXAMPLES
3028

3129
### -------------------------- Example 1 --------------------------
@@ -124,6 +122,11 @@ This cmdlet supports the common parameters: `-Debug, -ErrorAction, -ErrorVariabl
124122
You are responsible for independently clearing and securing all necessary rights and permissions to use any music or audio file with your Microsoft Teams service, which may include intellectual property and other rights in any music, sound effects, audio, brands, names, and other content in the audio file from all relevant rights holders, which may include artists, actors, performers, musicians, songwriters, composers, record labels, music publishers, unions, guilds, rights societies, collective management organizations and any other parties who own, control or license the music copyrights, sound effects, audio and other intellectual property rights.
125123

126124
## RELATED LINKS
125+
[Export-CsOnlineAudioFile](Export-CsOnlineAudioFile.md)
126+
127127
[Get-CsOnlineAudioFile](Get-CsOnlineAudioFile.md)
128128

129+
[New-CsOnlineAudioFile](New-CsOnlineAudioFile.md)
130+
129131
[Remove-CsOnlineAudioFile](Remove-CsOnlineAudioFile.md)
132+

skype/skype-ps/skype/New-CsOnlineAudioFile.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,5 +98,11 @@ This cmdlet supports the common parameters: `-Debug, -ErrorAction, -ErrorVariabl
9898
## NOTES
9999

100100
## RELATED LINKS
101+
[Export-CsOnlineAudioFile](Export-CsOnlineAudioFile.md)
101102

103+
[Get-CsOnlineAudioFile](Get-CsOnlineAudioFile.md)
104+
105+
[Import-CsOnlineAudioFile](Import-CsOnlineAudioFile.md)
106+
107+
[Remove-CsOnlineAudioFile](Remove-CsOnlineAudioFile.md)
102108

skype/skype-ps/skype/Remove-CsOnlineAudioFile.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,11 @@ the corresponding Auto Attendant or Call Queue is deleted.
6969
The cmdlet is available in Teams PS module 2.4.0-preview or later.
7070
7171
## RELATED LINKS
72-
[Import-CsOnlineAudioFile](Import-CsOnlineAudioFile.md)
72+
73+
[Export-CsOnlineAudioFile](Export-CsOnlineAudioFile.md)
7374
7475
[Get-CsOnlineAudioFile](Get-CsOnlineAudioFile.md)
76+
77+
[Import-CsOnlineAudioFile](Import-CsOnlineAudioFile.md)
78+
79+
[New-CsOnlineAudioFile](New-CsOnlineAudioFile.md)
Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
---
2+
external help file: Microsoft.Rtc.Management.Hosted.dll-help.xml
3+
online version: https://docs.microsoft.com/powershell/module/skype/export-csonlineaudiofile
4+
applicable: Microsoft Teams
5+
title: Export-CsOnlineAudioFile
6+
schema: 2.0.0
7+
manager: bulenteg
8+
author: jenstrier
9+
ms.author: jenstr
10+
ms.reviewer:
11+
---
12+
13+
# Export-CsOnlineAudioFile
14+
15+
## SYNOPSIS
16+
Use the Export-CsOnlineAudioFile cmdlet to download an existing audio file.
17+
18+
## SYNTAX
19+
20+
```powershell
21+
$content=Export-CsOnlineAudioFile -ApplicationId "HuntGroup" -Identity 57f800408f8848548dd1fbc18073fe46
22+
[System.IO.File]::WriteAllBytes('C:\MyWaveFile.wav', $content)
23+
```
24+
25+
## DESCRIPTION
26+
The Export-CsOnlineAudioFile cmdlet downloads an existing Auto Attendant (AA), Call Queue (CQ) service or Music on Hold audio file.
27+
28+
29+
## EXAMPLES
30+
31+
### -------------------------- Example 1 --------------------------
32+
```powershell
33+
$content=Export-CsOnlineAudioFile -ApplicationId "HuntGroup" -Identity 57f800408f8848548dd1fbc18073fe46
34+
[System.IO.File]::WriteAllBytes('C:\MyWaveFile.wav', $content)
35+
```
36+
37+
This example exports a Call Queue audio file and saves it as MyWaveFile.wav.
38+
39+
## PARAMETERS
40+
41+
### -ApplicationId
42+
The ApplicationId parameter is the identifier for the application which will use this audio file. For example, if the audio file is used with an organizational auto attendant, then it needs to be set to "OrgAutoAttendant". If the audio file is used with a hunt group (call queue), then it needs to be set to "HuntGroup". If the audio file is used with Microsoft Teams, then it needs to be set to "TenantGlobal"
43+
44+
Supported values:
45+
46+
- OrgAutoAttendant
47+
- HuntGroup
48+
- TenantGlobal
49+
50+
```yaml
51+
Type: System.string
52+
Parameter Sets: (All)
53+
Aliases:
54+
Applicable: Microsoft Teams
55+
56+
Required: True
57+
Position: Named
58+
Default value: TenantGlobal
59+
Accept pipeline input: False
60+
Accept wildcard characters: False
61+
```
62+
63+
### -Identity
64+
The Id of the specific audio file that you would like to export.
65+
66+
67+
```yaml
68+
Type: System.String
69+
Parameter Sets: (All)
70+
Aliases:
71+
72+
Required: False
73+
Default value: None
74+
Accept pipeline input: False
75+
Accept wildcard characters: False
76+
```
77+
78+
## INPUTS
79+
80+
### None
81+
82+
## OUTPUTS
83+
84+
### Microsoft.Rtc.Management.Hosted.Online.Models.AudioFile
85+
86+
## NOTES
87+
You are responsible for independently clearing and securing all necessary rights and permissions to use any music or audio file with your Microsoft Teams service, which may include intellectual property and other rights in any music, sound effects, audio, brands, names, and other content in the audio file from all relevant rights holders, which may include artists, actors, performers, musicians, songwriters, composers, record labels, music publishers, unions, guilds, rights societies, collective management organizations and any other parties who own, control or license the music copyrights, sound effects, audio and other intellectual property rights.
88+
89+
## RELATED LINKS
90+
[Get-CsOnlineAudioFile](Get-CsOnlineAudioFile.md)
91+
92+
[Import-CsOnlineAudioFile](Import-CsOnlineAudioFile.md)
93+
94+
[Remove-CsOnlineAudioFile](Remove-CsOnlineAudioFile.md)

0 commit comments

Comments
 (0)