Skip to content

Commit 61864c6

Browse files
committed
Link fixes 3
And other formatting or schema fixes as needed
1 parent 0910b05 commit 61864c6

File tree

95 files changed

+743
-820
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+743
-820
lines changed

teams/teams-ps/teams/Grant-CsUserPolicyPackage.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
111111
112112
## RELATED LINKS
113113
114-
[Get-CsPolicyPackage](Get-CsPolicyPackage.md)
114+
[Get-CsPolicyPackage](https://learn.microsoft.com/powershell/module/teams/get-cspolicypackage)
115115
116-
[Get-CsUserPolicyPackageRecommendation](Get-CsUserPolicyPackageRecommendation.md)
116+
[Get-CsUserPolicyPackageRecommendation](https://learn.microsoft.com/powershell/module/teams/get-csuserpolicypackagerecommendation)
117117
118-
[Get-CsUserPolicyPackage](Get-CsUserPolicyPackage.md)
118+
[Get-CsUserPolicyPackage](https://learn.microsoft.com/powershell/module/teams/get-csuserpolicypackage)
119119
120-
[New-CsBatchPolicyPackageAssignmentOperation](New-CsBatchPolicyPackageAssignmentOperation.md)
120+
[New-CsBatchPolicyPackageAssignmentOperation](https://learn.microsoft.com/powershell/module/teams/new-csbatchpolicypackageassignmentoperation)

teams/teams-ps/teams/Import-CsAutoAttendantHolidays.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -110,25 +110,21 @@ Accept wildcard characters: False
110110
```
111111
112112
### CommonParameters
113-
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).
114-
113+
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).
115114
116115
## INPUTS
117116
118117
### System.String
119118
The Import-CsAutoAttendantHolidays cmdlet accepts a string as the Identity parameter.
120119
121-
122120
## OUTPUTS
123121
124122
### Microsoft.Rtc.Management.Hosted.OAA.Models.HolidayImportResult
125123
126-
127124
## NOTES
128125
129-
130126
## RELATED LINKS
131127
132-
[Export-CsAutoAttendantHolidays](Export-CsAutoAttendantHolidays.md)
128+
[Export-CsAutoAttendantHolidays](https://learn.microsoft.com/powershell/module/teams/export-csautoattendantholidays)
133129
134-
[Get-CsAutoAttendantHolidays](Get-CsAutoAttendantHolidays.md)
130+
[Get-CsAutoAttendantHolidays](https://learn.microsoft.com/powershell/module/teams/get-csautoattendantholidays)

teams/teams-ps/teams/Import-CsOnlineAudioFile.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Use the Import-CsOnlineAudioFile cmdlet to upload a new audio file.
1818
## SYNTAX
1919

2020
```powershell
21-
Import-CsOnlineAudioFile -ApplicationId <OrgAutoAttendant | HuntGroup | TenantGlobal> -FileName <string> -Content <byte[]>
21+
Import-CsOnlineAudioFile -ApplicationId <String> -FileName <string> -Content <Byte[]> [<CommonParameters>]
2222
```
2323

2424
## DESCRIPTION
@@ -32,23 +32,23 @@ $content = [System.IO.File]::ReadAllBytes('C:\Media\Hello.wav')
3232
$audioFile = Import-CsOnlineAudioFile -ApplicationId "OrgAutoAttendant" -FileName "Hello.wav" -Content $content
3333
```
3434

35-
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](New-CsAutoAttendantPrompt.md).
35+
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://learn.microsoft.com/powershell/module/teams/new-csautoattendantprompt).
3636

3737
### Example 2
3838
```powershell
3939
$content = [System.IO.File]::ReadAllBytes('C:\Media\MOH.wav')
4040
$audioFile = Import-CsOnlineAudioFile -ApplicationId "HuntGroup" -FileName "MOH.wav" -Content $content
4141
```
4242

43-
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](Set-CsCallQueue.md) to provide the audio file id.
43+
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://learn.microsoft.com/powershell/module/teams/set-cscallqueue) to provide the audio file id.
4444

4545
### Example 3
4646
```powershell
4747
$content = [System.IO.File]::ReadAllBytes('C:\Media\MOH.wav')
4848
$audioFile = Import-CsOnlineAudioFile -ApplicationId TenantGlobal -FileName "MOH.wav" -Content $content
4949
```
5050

51-
This example creates a new audio file using the WAV content that has a filename of MOH.wav to be used as Music On Hold for Microsoft Teams. The stored variable, $audioFile, will be used with [New-CsTeamsCallHoldPolicy](New-CsTeamsCallHoldPolicy.md) to provide the audio file id.
51+
This example creates a new audio file using the WAV content that has a filename of MOH.wav to be used as Music On Hold for Microsoft Teams. The stored variable, $audioFile, will be used with [New-CsTeamsCallHoldPolicy](https://learn.microsoft.com/powershell/module/teams/new-csteamscallholdpolicy) to provide the audio file id.
5252

5353
## PARAMETERS
5454

@@ -62,7 +62,7 @@ Supported values:
6262
- TenantGlobal
6363

6464
```yaml
65-
Type: System.string
65+
Type: String
6666
Parameter Sets: (All)
6767
Aliases:
6868
Applicable: Microsoft Teams
@@ -78,7 +78,7 @@ Accept wildcard characters: False
7878
The FileName parameter is the name of the audio file. For example, the file name for the file C:\Media\Welcome.wav is Welcome.wav.
7979
8080
```yaml
81-
Type: System.string
81+
Type: String
8282
Parameter Sets: (All)
8383
Aliases:
8484
Applicable: Microsoft Teams
@@ -94,7 +94,7 @@ Accept wildcard characters: False
9494
The Content parameter represents the content of the audio file. Supported formats are WAV (uncompressed, linear PCM with 8/16/32-bit depth in mono or stereo), WMA (mono only), and MP3. The audio file content cannot be more 5MB.
9595
9696
```yaml
97-
Type: System.Byte[]
97+
Type: Byte[]
9898
Parameter Sets: (All)
9999
Aliases:
100100
Applicable: Microsoft Teams
@@ -107,7 +107,7 @@ Accept wildcard characters: False
107107
```
108108
109109
### CommonParameters
110-
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).`
110+
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).
111111
112112
## INPUTS
113113
@@ -126,8 +126,8 @@ Auto Attendant and Call Queue before 48 hours after it was imported.
126126
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.
127127
128128
## RELATED LINKS
129-
[Export-CsOnlineAudioFile](Export-CsOnlineAudioFile.md)
129+
[Export-CsOnlineAudioFile](https://learn.microsoft.com/powershell/module/teams/export-csonlineaudiofile)
130130
131-
[Get-CsOnlineAudioFile](Get-CsOnlineAudioFile.md)
131+
[Get-CsOnlineAudioFile](https://learn.microsoft.com/powershell/module/teams/get-csonlineaudiofile)
132132
133-
[Remove-CsOnlineAudioFile](Remove-CsOnlineAudioFile.md)
133+
[Remove-CsOnlineAudioFile](https://learn.microsoft.com/powershell/module/teams/remove-csonlineaudiofile)

teams/teams-ps/teams/New-CsApplicationAccessPolicy.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Creates a new application access policy. Application access policy contains a li
2121
### Identity
2222

2323
```
24-
New-CsApplicationAccessPolicy [-Identity <XdsIdentity>] [-AppIds <PSListModifier>] [-Description <String>]
24+
New-CsApplicationAccessPolicy [-Identity <XdsIdentity>] [-AppIds <PSListModifier>] [-Description <String>] [<CommonParameters>]
2525
```
2626

2727
## DESCRIPTION
@@ -46,7 +46,6 @@ PS C:\> New-CsApplicationAccessPolicy -Identity "ASimplePolicy" -AppIds "d39597b
4646

4747
The command shown above shows how to create a new policy with a list of (three) app IDs configured.
4848

49-
5049
## PARAMETERS
5150

5251
### -Identity
@@ -56,7 +55,7 @@ Unique identifier assigned to the policy when it was created.
5655
```yaml
5756
Type: XdsIdentity
5857
Parameter Sets: (All)
59-
Aliases:
58+
Aliases:
6059

6160
Required: True
6261
Position: 1
@@ -88,7 +87,7 @@ Specifies the description of the policy.
8887
```yaml
8988
Type: String
9089
Parameter Sets: (All)
91-
Aliases:
90+
Aliases:
9291

9392
Required: False
9493
Position: Named
@@ -97,6 +96,10 @@ Accept pipeline input: False
9796
Accept wildcard characters: False
9897
```
9998
99+
### CommonParameters
100+
101+
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).
102+
100103
## INPUTS
101104
102105
## OUTPUTS
@@ -105,7 +108,7 @@ Accept wildcard characters: False
105108
106109
## RELATED LINKS
107110
108-
[Grant-CsApplicationAccessPolicy](Grant-CsApplicationAccessPolicy.md)
109-
[Get-CsApplicationAccessPolicy](Get-CsApplicationAccessPolicy.md)
110-
[Set-CsApplicationAccessPolicy](Set-CsApplicationAccessPolicy.md)
111-
[Remove-CsApplicationAccessPolicy](Remove-CsApplicationAccessPolicy.md)
111+
[Grant-CsApplicationAccessPolicy](https://learn.microsoft.com/powershell/module/teams/grant-csapplicationaccesspolicy)
112+
[Get-CsApplicationAccessPolicy](https://learn.microsoft.com/powershell/module/teams/grant-csapplicationaccesspolicy)
113+
[Set-CsApplicationAccessPolicy](https://learn.microsoft.com/powershell/module/teams/grant-csapplicationaccesspolicy)
114+
[Remove-CsApplicationAccessPolicy](https://learn.microsoft.com/powershell/module/teams/grant-csapplicationaccesspolicy)

teams/teams-ps/teams/New-CsAutoAttendant.md

Lines changed: 24 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,6 @@ New-CsAutoAttendant -Name "Main auto attendant" -DefaultCallFlow $defaultCallFlo
193193
# DirectoryLookupScope :
194194
# ApplicationInstances :
195195
196-
197196
# Show the auto attendants associated with this holiday schedule:
198197
Get-CsOnlineSchedule $christmasSchedule.Id
199198
@@ -209,7 +208,7 @@ This example creates two new AAs named _Main auto attendant_ and _Customer Suppo
209208

210209
We can see when we ran the Get-CsOnlineSchedule cmdlet at the end, to get the _Christmas Holiday_ schedule information, that the configuration IDs for the newly created AAs have been added to the `AssociatedConfigurationIds` properties of that schedule. This means any updates made to this schedule would reflect in both associated AAs.
211210

212-
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.
211+
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](https://learn.microsoft.com/powershell/module/teams/set-csautoattendant) cmdlet documentation for examples on how to do that.
213212

214213
### -------------------------- Example 4 --------------------------
215214
```powershell
@@ -283,7 +282,7 @@ Accept wildcard characters: False
283282
### -LanguageId
284283
The LanguageId parameter is the language that is used to read text-to-speech (TTS) prompts.
285284
286-
You can query the supported languages using the [`Get-CsAutoAttendantSupportedLanguage`](Get-CsAutoAttendantSupportedLanguage.md) cmdlet.
285+
You can query the supported languages using the [`Get-CsAutoAttendantSupportedLanguage`](https://learn.microsoft.com/powershell/module/teams/get-csautoattendantsupportedlanguage) cmdlet.
287286

288287
```yaml
289288
Type: System.String
@@ -301,7 +300,7 @@ Accept wildcard characters: False
301300
### -TimeZoneId
302301
The TimeZoneId parameter represents the AA time zone. All schedules are evaluated based on this time zone.
303302

304-
You can query the supported timezones using the [`Get-CsAutoAttendantSupportedTimeZone`](Get-CsAutoAttendantSupportedTimeZone.md) cmdlet.
303+
You can query the supported timezones using the [`Get-CsAutoAttendantSupportedTimeZone`](https://learn.microsoft.com/powershell/module/teams/get-csautoattendantsupportedtimezone) cmdlet.
305304

306305
```yaml
307306
Type: System.String
@@ -319,8 +318,7 @@ Accept wildcard characters: False
319318
### -DefaultCallFlow
320319
The DefaultCallFlow parameter is the flow to be executed when no other call flow is in effect (for example, during business hours).
321320

322-
You can create the DefaultCallFlow by using the [`New-CsAutoAttendantCallFlow`](New-CsAutoAttendantCallFlow.md) cmdlet.
323-
321+
You can create the DefaultCallFlow by using the [`New-CsAutoAttendantCallFlow`](https://learn.microsoft.com/powershell/module/teams/new-csautoattendantcallflow) cmdlet.
324322

325323
```yaml
326324
Type: Object
@@ -338,8 +336,7 @@ Accept wildcard characters: False
338336
### -CallFlows
339337
The CallFlows parameter represents call flows, which are required if they are referenced in the CallHandlingAssociations parameter.
340338

341-
You can create CallFlows by using the [`New-CsAutoAttendantCallFlow`](New-CsAutoAttendantCallFlow.md) cmdlet.
342-
339+
You can create CallFlows by using the [`New-CsAutoAttendantCallFlow`](https://learn.microsoft.com/powershell/module/teams/new-csautoattendantcallflow) cmdlet.
343340

344341
```yaml
345342
Type: System.Collections.Generic.List
@@ -378,7 +375,6 @@ The Operator parameter represents the SIP address or PSTN number of the operator
378375

379376
You can create callable entities by using the `New-CsAutoAttendantCallableEntity` cmdlet.
380377

381-
382378
```yaml
383379
Type: Object
384380
Parameter Sets: (All)
@@ -435,8 +431,7 @@ Accept wildcard characters: False
435431
Specifies the users to which call transfers are allowed through directory lookup feature.
436432
If not specified, all users in the organization can be reached through directory lookup.
437433

438-
Dial scopes can be created by using the [`New-CsAutoAttendantDialScope`](New-CsAutoAttendantDialScope.md) cmdlet.
439-
434+
Dial scopes can be created by using the [`New-CsAutoAttendantDialScope`](https://learn.microsoft.com/powershell/module/teams/new-csautoattendantdialscope) cmdlet.
440435

441436
```yaml
442437
Type: Object
@@ -455,8 +450,7 @@ Accept wildcard characters: False
455450
Specifies the users to which call transfers are not allowed through directory lookup feature.
456451
If not specified, no user in the organization is excluded from directory lookup.
457452

458-
Dial scopes can be created by using the [`New-CsAutoAttendantDialScope`](New-CsAutoAttendantDialScope.md) cmdlet.
459-
453+
Dial scopes can be created by using the [`New-CsAutoAttendantDialScope`](https://learn.microsoft.com/powershell/module/teams/new-csautoattendantdialscope) cmdlet.
460454

461455
```yaml
462456
Type: Object
@@ -472,12 +466,12 @@ Accept wildcard characters: False
472466
```
473467

474468
### -AuthorizedUsers
475-
This is a list of GUIDs for users who are authorized to make changes to this call queue. The users must also have a TeamsVoiceApplications policy assigned. The GUID should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).
469+
This is a list of GUIDs for users who are authorized to make changes to this call queue. The users must also have a TeamsVoiceApplications policy assigned. The GUID should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).
476470

477471
```yaml
478472
Type: List
479473
Parameter Sets: (All)
480-
Aliases:
474+
Aliases:
481475
applicable: Microsoft Teams
482476
483477
Required: False
@@ -490,12 +484,12 @@ Accept wildcard characters: False
490484
### -HideAuthorizedUsers
491485
_Saving a call queue configuration through Teams admin center will *remove* this setting._
492486

493-
This is a list of GUIDs of authorized users who should not appear on the list of supervisors for the agents who are members of this queue. The GUID should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).
487+
This is a list of GUIDs of authorized users who should not appear on the list of supervisors for the agents who are members of this queue. The GUID should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).
494488

495489
```yaml
496490
Type: List
497491
Parameter Sets: (All)
498-
Aliases:
492+
Aliases:
499493
applicable: Microsoft Teams
500494
501495
Required: False
@@ -542,43 +536,40 @@ Accept wildcard characters: False
542536
```
543537

544538
### CommonParameters
545-
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).`
539+
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).
546540

547541
## INPUTS
548542

549543
### None
550544

551-
552545
## OUTPUTS
553546

554547
### Microsoft.Rtc.Management.OAA.Models.AutoAttendant
555548

556-
557549
## NOTES
558550

559-
560551
## RELATED LINKS
561552

562-
[New-CsOnlineApplicationInstanceAssociation](New-CsOnlineApplicationInstanceAssociation.md)
553+
[New-CsOnlineApplicationInstanceAssociation](https://learn.microsoft.com/powershell/module/teams/new-csonlineapplicationinstanceassociation)
563554

564-
[Get-CsAutoAttendant](Get-CsAutoAttendant.md)
555+
[Get-CsAutoAttendant](https://learn.microsoft.com/powershell/module/teams/get-csautoattendant)
565556

566-
[Get-CsAutoAttendantStatus](Get-CsAutoAttendantStatus.md)
557+
[Get-CsAutoAttendantStatus](https://learn.microsoft.com/powershell/module/teams/get-csautoattendantstatus)
567558

568-
[Get-CsAutoAttendantSupportedLanguage](Get-CsAutoAttendantSupportedLanguage.md)
559+
[Get-CsAutoAttendantSupportedLanguage](https://learn.microsoft.com/powershell/module/teams/get-csautoattendantsupportedlanguage)
569560

570-
[Get-CsAutoAttendantSupportedTimeZone](Get-CsAutoAttendantSupportedTimeZone.md)
561+
[Get-CsAutoAttendantSupportedTimeZone](https://learn.microsoft.com/powershell/module/teams/get-csautoattendantsupportedtimezone)
571562

572-
[New-CsAutoAttendantCallableEntity](New-CsAutoAttendantCallableEntity.md)
563+
[New-CsAutoAttendantCallableEntity](https://learn.microsoft.com/powershell/module/teams/new-csautoattendantcallableentity)
573564

574-
[New-CsAutoAttendantCallFlow](New-CsAutoAttendantCallFlow.md)
565+
[New-CsAutoAttendantCallFlow](https://learn.microsoft.com/powershell/module/teams/new-csautoattendantcallflow)
575566

576-
[New-CsAutoAttendantCallHandlingAssociation](New-CsAutoAttendantCallHandlingAssociation.md)
567+
[New-CsAutoAttendantCallHandlingAssociation](https://learn.microsoft.com/powershell/module/teams/new-csautoattendantcallhandlingassociation)
577568

578-
[New-CsOnlineSchedule](New-CsOnlineSchedule.md)
569+
[New-CsOnlineSchedule](https://learn.microsoft.com/powershell/module/teams/new-csonlineschedule)
579570

580-
[Remove-CsAutoAttendant](Remove-CsAutoAttendant.md)
571+
[Remove-CsAutoAttendant](https://learn.microsoft.com/powershell/module/teams/remove-csautoattendant)
581572

582-
[Set-CsAutoAttendant](Set-CsAutoAttendant.md)
573+
[Set-CsAutoAttendant](https://learn.microsoft.com/powershell/module/teams/set-csautoattendant)
583574

584-
[Update-CsAutoAttendant](Update-CsAutoAttendant.md)
575+
[Update-CsAutoAttendant](https://learn.microsoft.com/powershell/module/teams/update-csautoattendant)

0 commit comments

Comments
 (0)