Skip to content

Commit ac1d237

Browse files
committed
Fixed smart quotes and tabs
1 parent fb84420 commit ac1d237

15 files changed

+31
-35
lines changed

skype/skype-ps/skype/Get-CsTeamsAudioConferencingPolicy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The command shown in Example 1, Get-CsTeamsAudioConferencingPolicy is called wit
4040
PS C:\> Get-CsTeamsAudioConferencingPolicy -Identity "EMEA Users"
4141
```
4242

43-
The command shown in Example 2, Get-CsTeamsAudioConferencingPolicy is used to return the per-user audio conferencing policy that has an Identity EMEA Users. Because identities are unique, this command will never return more than one item.
43+
The command shown in Example 2, Get-CsTeamsAudioConferencingPolicy is used to return the per-user audio conferencing policy that has an Identity "EMEA Users". Because identities are unique, this command will never return more than one item.
4444

4545
## PARAMETERS
4646

@@ -60,7 +60,7 @@ Accept wildcard characters: False
6060
```
6161
6262
### -Identity
63-
Unique identifier for the policy to be retrieved. To retrieve the global policy, use this syntax: -Identity global. To retrieve a per-user policy use syntax similar to this: -Identity EMEA Users.
63+
Unique identifier for the policy to be retrieved. To retrieve the global policy, use this syntax: -Identity global. To retrieve a per-user policy use syntax similar to this: -Identity "EMEA Users".
6464
If this parameter is not included, the Get-CsTeamsAudioConferencingPolicy cmdlet will return a collection of all the teams audio conferencing policies configured for use in your organization.
6565
6666
```yaml

skype/skype-ps/skype/Grant-CsTeamsAudioConferencingPolicy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ Granular control over which audio conferencing features your users can or cannot
3232

3333
### EXAMPLE 1
3434
```
35-
PS C:\> Grant-CsTeamsAudioCOnferencingPolicy -identity "Ken Myer" -PolicyName Emea Users
35+
PS C:\> Grant-CsTeamsAudioCOnferencingPolicy -identity "Ken Myer" -PolicyName "Emea Users"
3636
```
3737

38-
In this example, a user with identity "Ken Myer" is being assigned the Emea Users policy.
38+
In this example, a user with identity "Ken Myer" is being assigned the "Emea Users" policy.
3939

4040

4141

skype/skype-ps/skype/Set-CsTeamsAudioConferencingPolicy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ In this example, AllowTollFreeDialin is set to false. All other policy propertie
3939

4040
### EXAMPLE 2
4141
```
42-
PS C:\> Set-CsTeamsAudioConferencingPolicy -Identity "EMEA Users" -AllowTollFreeDialin $True -MeetingInvitePhoneNumbers +49695095XXXXX”,”+353156YYYYY”,”+1800856ZZZZZ
42+
PS C:\> Set-CsTeamsAudioConferencingPolicy -Identity "EMEA Users" -AllowTollFreeDialin $True -MeetingInvitePhoneNumbers "+49695095XXXXX","+353156YYYYY","+1800856ZZZZZ"
4343
```
4444

45-
In this example, two different property values are configured: AllowTollFreeDialIn is set to True and -MeetingInvitePhoneNumbers is set to include the following Toll and Toll free numbers - +49695095XXXXX”,”+353156YYYYY”,”+1800856ZZZZZ other policy properties will be left as previously assigned.
45+
In this example, two different property values are configured: AllowTollFreeDialIn is set to True and -MeetingInvitePhoneNumbers is set to include the following Toll and Toll free numbers - "+49695095XXXXX","+353156YYYYY","+1800856ZZZZZ" other policy properties will be left as previously assigned.
4646

4747
## PARAMETERS
4848

@@ -77,7 +77,7 @@ Accept wildcard characters: False
7777
```
7878
7979
### -Identity
80-
Unique identifier for the policy to be Set. To set the global policy, use this syntax: -Identity global. To set a per-user policy use syntax similar to this: -Identity Emea Users.
80+
Unique identifier for the policy to be Set. To set the global policy, use this syntax: -Identity global. To set a per-user policy use syntax similar to this: -Identity "Emea Users".
8181
If this parameter is not included, the Set-CsTeamsAudioConferencingPolicy cmdlet will modify the Global policy.
8282
8383
```yaml

teams/teams-ps/teams/Connect-MicrosoftTeams.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ This example connects to an Azure account. You must provide a Microsoft account
6666

6767
```powershell
6868
Connect-MicrosoftTeams
69-
Account Environment Tenant TenantId
69+
Account Environment Tenant TenantId
7070
------- ----------- ------------------------------------ ------------------------------------
7171
[email protected] AzureCloud xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
7272
```
@@ -77,7 +77,7 @@ The first command prompts for user credentials and stores them in the $Credentia
7777
```powershell
7878
$credential = Get-Credential
7979
Connect-MicrosoftTeams -Credential $credential
80-
Account Environment Tenant TenantId
80+
Account Environment Tenant TenantId
8181
------- ----------- ------------------------------------ ------------------------------------
8282
[email protected] AzureCloud xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
8383
```
@@ -87,7 +87,7 @@ This example connects to an Azure account in a specific environment. You must pr
8787

8888
```powershell
8989
Connect-MicrosoftTeams -TeamsEnvironmentName TeamsGCCH
90-
Account Environment Tenant TenantId
90+
Account Environment Tenant TenantId
9191
------- ----------- ------------------------------------ ------------------------------------
9292
[email protected] TeamsGCCH xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
9393
```
@@ -100,12 +100,12 @@ Connect-MicrosoftTeams -CertificateThumbprint "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
100100
```
101101

102102
### Example 5: Connect to MicrosoftTeams using Application-based Access Tokens
103-
This example demonstrates how to authenticate with an application using Access Tokens. Access Tokens can be retrieved via the login.microsoftonline.com endpoint. It requires two Access Tokens – “MS Graph and Skype and Teams Tenant Admin API resources.
103+
This example demonstrates how to authenticate with an application using Access Tokens. Access Tokens can be retrieved via the login.microsoftonline.com endpoint. It requires two Access Tokens: "MS Graph" and "Skype and Teams Tenant Admin API" resources.
104104

105105
Application-based authentication has been reintroduced in preview with version 4.7.1-preview. For details and supported cmdlets, see [Application-based authentication in Teams PowerShell Module](/MicrosoftTeams/teams-powershell-application-authentication).
106106

107107
```powershell
108-
$ClientSecret = ""
108+
$ClientSecret = "..."
109109
$ApplicationID = "00000000-0000-0000-0000-000000000000"
110110
$TenantID = "YYYYYYYY-YYYY-YYYY-YYYY-YYYYYYYYYYYY"
111111
@@ -162,7 +162,7 @@ $GraphToken = (Invoke-RestMethod @RequestParameters -Body "$Body&scope=https://g
162162
$TeamsToken = (Invoke-RestMethod @RequestParameters -Body "$Body&scope=48ac35b8-9aa8-4d74-927d-1f4a14a0b239/.default").access_token
163163
Connect-MicrosoftTeams -AccessTokens @($GraphToken, $TeamsToken)
164164
165-
Account Environment Tenant TenantId
165+
Account Environment Tenant TenantId
166166
------- ----------- ------------------------------------ ------------------------------------
167167
[email protected] AzureCloud xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
168168
```

teams/teams-ps/teams/Get-CsHybridTelephoneNumber.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Get-CsHybridTelephoneNumber -TelephoneNumber 14025551234
3636
```output
3737
Id O365Region SourceType TargetType TelephoneNumber UserId
3838
-- ---------- ---------- ---------- --------------- ------
39-
14025551234 NOAM Hybrid 14025551234 00000000-0000-0000-0000-000000000000
39+
14025551234 NOAM Hybrid 14025551234 00000000-0000-0000-0000-000000000000
4040
```
4141
This example displays information about the phone number +1 (402) 555-1234.
4242

teams/teams-ps/teams/Get-CsPhoneNumberAssignment.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,7 @@ This cmdlet displays information about one or more phone numbers.
1919

2020
### Assignment (Default)
2121
```powershell
22-
Get-CsPhoneNumberAssignment [-ActivationState <string>] [-AssignedPstnTargetId <string>] [-CapabilitiesContain <string>]
23-
[-CivicAddressId <string>] [-IsoCountryCode <string>] [-LocationId <string>] [-NumberType <string>]
24-
[-PstnAssignmentStatus <string>] [-Skip <int>] [-TelephoneNumber <string>] [-TelephoneNumberContain <string>]
25-
[-TelephoneNumberGreaterThan <string>] [-TelephoneNumberLessThan <string>] [-TelephoneNumberStartsWith <string>] [-Top <int>]
26-
[<CommonParameters>]
22+
Get-CsPhoneNumberAssignment [-ActivationState <string>] [-AssignedPstnTargetId <string>] [-CapabilitiesContain <string>] [-CivicAddressId <string>] [-IsoCountryCode <string>] [-LocationId <string>] [-NumberType <string>] [-PstnAssignmentStatus <string>] [-Skip <int>] [-TelephoneNumber <string>] [-TelephoneNumberContain <string>] [-TelephoneNumberGreaterThan <string>] [-TelephoneNumberLessThan <string>] [-TelephoneNumberStartsWith <string>] [-Top <int>] [<CommonParameters>]
2723
```
2824

2925
## DESCRIPTION

teams/teams-ps/teams/Get-CsTeamTemplate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ This cmdlet supports retrieving details of a team template available to your ten
4848
PS C:> (Get-CsTeamTemplateList -PublicTemplateLocale en-US) | where Name -like 'test' | ForEach-Object {Get-CsTeamTemplate -OdataId $_.OdataId}
4949
```
5050

51-
Within the universe of templates the admins tenant has access to, returns a template definition object (displayed as a JSON by default) for every custom and every Microsoft en-US template which names include test.
51+
Within the universe of templates the admin's tenant has access to, returns a template definition object (displayed as a JSON by default) for every custom and every Microsoft en-US template which names include 'test'.
5252

5353
### EXAMPLE 2
5454

teams/teams-ps/teams/Get-CsTeamTemplateList.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Get a list of available team templates
4343
PS C:> Get-CsTeamTemplateList
4444
```
4545

46-
Returns all en-US templates within the universe of templates the admins tenant has access to.
46+
Returns all en-US templates within the universe of templates the admin's tenant has access to.
4747

4848
Note: All 1P Microsoft templates will always be returned in the specified locale. If the locale is not specified, en-US will be used.
4949

@@ -53,7 +53,7 @@ Note: All 1P Microsoft templates will always be returned in the specified locale
5353
PS C:> (Get-CsTeamTemplateList -PublicTemplateLocale en-US) | where ChannelCount -GT 3
5454
```
5555

56-
Returns all en-US templates that have 3 channels within the universe of templates the admins tenant has access to.
56+
Returns all en-US templates that have 3 channels within the universe of templates the admin's tenant has access to.
5757

5858
## PARAMETERS
5959

teams/teams-ps/teams/Get-CsTeamsShiftsConnectionConnector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ PS C:\> Get-CsTeamsShiftsConnectionConnector
3434
```
3535
Id Name SupportedScenario Version WfiSupportedScenario
3636
-- ---- ----------------- ------- --------------------
37-
6A51B888-FF44-4FEA-82E1-839401E9CD74 Contoso V1 {Shift, SwapRequest, UserShiftPreferences, OpenShift...} 2020.3 - 2021.1 {SwapRequest, OpenShiftRequest, TimeOffRequest}
37+
6A51B888-FF44-4FEA-82E1-839401E9CD74 Contoso V1 {Shift, SwapRequest, UserShiftPreferences, OpenShift...} 2020.3 - 2021.1 {SwapRequest, OpenShiftRequest, TimeOffRequest}
3838
```
3939
Get the list of Shifts Connectors available on the tenant.
4040

teams/teams-ps/teams/Get-TeamTargetingHierarchyStatus.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ LastKnownStatus : Validating
4040
ErrorMessage : 1 error(s) were found.
4141
Error: InvalidTeamId
4242
Descriptions:
43-
TeamID in row 2 doesnt match a valid Group ID. Please view our documentation to learn how to get the proper Group ID for each team.
44-
TeamID in row 3 doesnt match a valid Group ID. Please view our documentation to learn how to get the proper Group ID for each team.
45-
TeamID in row 4 doesnt match a valid Group ID. Please view our documentation to learn how to get the proper Group ID for each team.
46-
TeamID in row 5 doesnt match a valid Group ID. Please view our documentation to learn how to get the proper Group ID for each team.
47-
TeamID in row 6 doesnt match a valid Group ID. Please view our documentation to learn how to get the proper Group ID for each team.
48-
TeamID in row 7 doesnt match a valid Group ID. Please view our documentation to learn how to get the proper Group ID for each team.
43+
TeamID in row 2 doesn't match a valid Group ID. Please view our documentation to learn how to get the proper Group ID for each team.
44+
TeamID in row 3 doesn't match a valid Group ID. Please view our documentation to learn how to get the proper Group ID for each team.
45+
TeamID in row 4 doesn't match a valid Group ID. Please view our documentation to learn how to get the proper Group ID for each team.
46+
TeamID in row 5 doesn't match a valid Group ID. Please view our documentation to learn how to get the proper Group ID for each team.
47+
TeamID in row 6 doesn't match a valid Group ID. Please view our documentation to learn how to get the proper Group ID for each team.
48+
TeamID in row 7 doesn't match a valid Group ID. Please view our documentation to learn how to get the proper Group ID for each team.
4949
5050
LastUpdatedAt : 2021-02-17T22:28:08.7832795+00:00
5151
LastModifiedBy : a145d7eb-b70d-4591-9455-6c87382a22b7

0 commit comments

Comments
 (0)