Skip to content

Commit 3355a24

Browse files
authored
Merge pull request MicrosoftDocs#9940 from MicrosoftDocs/chrisda
Build report fixes
2 parents c60052a + a54a95e commit 3355a24

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

skype/skype-ps/skype/New-CsTeamsAudioConferencingPolicy.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ The New-CsTeamsAudioConferencingPolicy cmdlet enables administrators to control
2626
PS C:\> New-CsTeamsAudioConferencingPolicy -Identity "EMEA Users" -AllowTollFreeDialin $False
2727
```
2828

29-
The command shown in Example 1 uses the New-CsTeamsAudioConferencingPolicy cmdlet to create a new audio-conferencing policy with the Identity EMEA users. This policy will use all the default values for a meeting policy except one: AllowTollFreeDialin; in this example, meetings created by users with this policy cannot include Toll Free phone numbers.
29+
The command shown in Example 1 uses the New-CsTeamsAudioConferencingPolicy cmdlet to create a new audio-conferencing policy with the Identity "EMEA users". This policy will use all the default values for a meeting policy except one: AllowTollFreeDialin; in this example, meetings created by users with this policy cannot include Toll Free phone numbers.
3030

3131
### EXAMPLE 2
3232
```
33-
PS C:\> New-CsTeamsAudioConferencingPolicy -Identity "EMEA Users" -AllowTollFreeDialin $True -MeetingInvitePhoneNumbers +49695095XXXXX”,”+353156YYYYY”,”+1800856ZZZZZ
33+
PS C:\> New-CsTeamsAudioConferencingPolicy -Identity "EMEA Users" -AllowTollFreeDialin $True -MeetingInvitePhoneNumbers "+49695095XXXXX","+353156YYYYY","+1800856ZZZZZ"
3434
```
3535

36-
The command shown in Example 2 uses the New-CsTeamsAudioConferencingPolicy cmdlet to create a new audio-conferencing policy with the Identity EMEA users. This policy will use all the default values for a meeting policy except one: MeetingInvitePhoneNumbers; in this example, meetings created by users with this policy will include the following toll and toll free phone numbers +49695095XXXXX”,”+353156YYYYY”,”+1800856ZZZZZ.
36+
The command shown in Example 2 uses the New-CsTeamsAudioConferencingPolicy cmdlet to create a new audio-conferencing policy with the Identity "EMEA users". This policy will use all the default values for a meeting policy except one: MeetingInvitePhoneNumbers; in this example, meetings created by users with this policy will include the following toll and toll free phone numbers "+49695095XXXXX","+353156YYYYY","+1800856ZZZZZ".
3737

3838
## PARAMETERS
3939

@@ -83,8 +83,7 @@ Accept wildcard characters: False
8383
```
8484
8585
### -InMemory
86-
Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>.
87-
Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-.
86+
Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set- cmdlet.
8887
8988
```yaml
9089
Type: SwitchParameter

skype/skype-ps/skype/Remove-CsTeamsAudioConferencingPolicy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ Deletes a previously created TeamsAudioConferencingPolicy. Any users with no exp
2424

2525
### EXAMPLE 1
2626
```
27-
PS C:\> Remove-CsTeamsAudioCOnferencingPolicy -Identity Emea Users
27+
PS C:\> Remove-CsTeamsAudioCOnferencingPolicy -Identity "Emea Users"
2828
```
2929

30-
In the example shown above, the command will delete the Emea Users audio conferencing policy from the organization's list of policies.
30+
In the example shown above, the command will delete the "Emea Users" audio conferencing policy from the organization's list of policies.
3131

3232
## PARAMETERS
3333

@@ -48,7 +48,7 @@ Accept wildcard characters: False
4848
```
4949
5050
### -Identity
51-
Unique identifier for the TeamsAudioConferencingPolicy to be removed. To remove global policy, use this syntax: -Identity global. (Note that the global policy cannot be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy, use this syntax: -Identity <policy name>.
51+
Unique identifier for the TeamsAudioConferencingPolicy to be removed. To remove global policy, use this syntax: -Identity global. (Note that the global policy cannot be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy, use this syntax: `-Identity "<policy name>"`.
5252

5353
```yaml
5454
Type: String

0 commit comments

Comments
 (0)