Skip to content

Commit 7bbf112

Browse files
frankpeng7dariomws
andauthored
Apply suggestions from code review
Fixed typos and small issues Co-authored-by: Dario Woitasen <[email protected]>
1 parent 7bd0f3e commit 7bbf112

File tree

5 files changed

+25
-30
lines changed

5 files changed

+25
-30
lines changed

skype/skype-ps/skype/Get-CsApplicationAccessPolicy.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ Get-CsApplicationAccessPolicy [-Identity <XdsIdentity>]
2626

2727
## DESCRIPTION
2828

29-
<TODO: description>
29+
This cmdlet retrieves information about the application access policy configured for use in the tenant.
3030

3131
## EXAMPLES
3232

33-
### Retrieve all applicationn access policies
33+
### Retrieve all application access policies
3434

3535
```
3636
PS C:\> Get-CsApplicationAccessPolicy
@@ -55,7 +55,7 @@ Unique identifier assigned to the policy when it was created.
5555

5656
```yaml
5757
Type: XdsIdentity
58-
Parameter Sets: Identity
58+
Parameter Sets: (All)
5959
Aliases:
6060

6161
Required: True
@@ -77,4 +77,3 @@ Accept wildcard characters: False
7777
[Grant-CsApplicationAccessPolicy](Grant-CsApplicationAccessPolicy.md)
7878
[Set-CsApplicationAccessPolicy](Set-CsApplicationAccessPolicy.md)
7979
[Remove-CsApplicationAccessPolicy](Remove-CsApplicationAccessPolicy.md)
80-

skype/skype-ps/skype/Grant-CsApplicationAccessPolicy.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,37 +14,37 @@ ms.reviewer:
1414

1515
## SYNOPSIS
1616

17-
Assigns a per-user application access policy to one or moer users. After assigning an application access policy to a user, the applications configured in th policy will be authorized to access online meetings on behalf of that user.
17+
Assigns a per-user application access policy to one or more users. After assigning an application access policy to a user, the applications configured in the policy will be authorized to access online meetings on behalf of that user.
1818

1919
## SYNTAX
2020

2121
### FileName
2222

2323
```
24-
Grant-CsApplicationAccessPolicy [-Identity <UserIdParameter>] [-PolicyName <String>]
24+
Grant-CsApplicationAccessPolicy [-Identity <UserIdParameter>] [-PolicyName <String>] [-Global]
2525
```
2626

2727
## DESCRIPTION
2828

29-
<TODO: description>
29+
This cmdlet assigns a per-user application access policy to one or more users. After assigning an application access policy to a user, the applications configured in the policy will be authorized to access online meetings on behalf of that user.
3030

3131
## EXAMPLES
3232

33-
### Assign an application access poicy to a user
33+
### Assign an application access policy to a user
3434

3535
```
3636
PS C:\> Grant-CsApplicationAccessPolicy -Identity "dc17674c-81d9-4adb-bfb2-8f6a442e4624" -PolicyName "ASimplePolicy"
3737
```
3838

39-
The command shown above assigns the per-user application access policy "ASimplePolicy" to the user with obect ID "dc17674c-81d9-4adb-bfb2-8f6a442e4624".
39+
The command shown above assigns the per-user application access policy "ASimplePolicy" to the user with object ID "dc17674c-81d9-4adb-bfb2-8f6a442e4624".
4040

41-
### UnAssign an application access poicy from a user
41+
### Unassign an application access policy from a user
4242

4343
```
4444
PS C:\> Grant-CsApplicationAccessPolicy -Identity "dc17674c-81d9-4adb-bfb2-8f6a442e4624" -PolicyName $Null
4545
```
4646

47-
In the command shown above , any per-user application access policy previously assigned to the user with user (object) ID "dc17674c-81d9-4adb-bfb2-8f6a442e4624" is unassigned from that user; as a result, applications configured in the policy can no longer access online meetings on behalf of that user. To unassign a per-user policy, set the PolicyName to a null value ($Null).
47+
In the command shown above, any per-user application access policy previously assigned to the user with user (object) ID "dc17674c-81d9-4adb-bfb2-8f6a442e4624" is unassigned from that user; as a result, applications configured in the policy can no longer access online meetings on behalf of that user. To unassign a per-user policy, set the PolicyName to a null value ($Null).
4848

4949
### Assign an application access policy to all users in the tenant
5050

@@ -66,11 +66,11 @@ The command shown above assigns the per-user application access policy "ASimpleP
6666

6767
### -Identity
6868

69-
Indicates the user (object) ID of the user account to be assigned the per-user online voice routing policy.
69+
Indicates the user (object) ID of the user account to be assigned the per-user application access policy.
7070

7171
```yaml
7272
Type: UserIdParameter
73-
Parameter Sets: Identity
73+
Parameter Sets: (All)
7474
Aliases:
7575

7676
Required: True
@@ -82,7 +82,7 @@ Accept wildcard characters: False
8282
8383
### -PolicyName
8484
85-
<TODO: description for parameter?> "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:ASimplePolicy has a PolicyName equal to ASimplePolicy.
85+
Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:ASimplePolicy has a PolicyName equal to ASimplePolicy.
8686
8787
```yaml
8888
Type: PSListModifier
@@ -124,4 +124,3 @@ Accept wildcard characters: False
124124
[Get-CsApplicationAccessPolicy](Get-CsApplicationAccessPolicy.md)
125125
[Set-CsApplicationAccessPolicy](Set-CsApplicationAccessPolicy.md)
126126
[Remove-CsApplicationAccessPolicy](Remove-CsApplicationAccessPolicy.md)
127-

skype/skype-ps/skype/New-CsApplicationAccessPolicy.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.reviewer:
1414

1515
## SYNOPSIS
1616

17-
Creates a new application access policy. Application access policy contains a list of application(client) IDs. When granted to a user, those applications will be authorized to access online meetings on behalf of that user.
17+
Creates a new application access policy. Application access policy contains a list of application (client) IDs. When granted to a user, those applications will be authorized to access online meetings on behalf of that user.
1818

1919
## SYNTAX
2020

@@ -26,7 +26,7 @@ New-CsApplicationAccessPolicy [-Identity <XdsIdentity>] [-AppIds <PSListModifier
2626

2727
## DESCRIPTION
2828

29-
<TODO: description>
29+
This cmdlet creates a new application access policy. Application access policy contains a list of application (client) IDs. When granted to a user, those applications will be authorized to access online meetings on behalf of that user.
3030

3131
## EXAMPLES
3232

@@ -55,7 +55,7 @@ Unique identifier assigned to the policy when it was created.
5555

5656
```yaml
5757
Type: XdsIdentity
58-
Parameter Sets: Identity
58+
Parameter Sets: (All)
5959
Aliases:
6060

6161
Required: True
@@ -67,7 +67,7 @@ Accept wildcard characters: False
6767
6868
### -AppIds
6969
70-
<TODO: description for parameter?> A list of application (client) IDs. For details of application (client) ID, refer to: [Get tenant and app ID values for signing in](https://docs.microsoft.com/en-us/azure/active-directory/develop/howto-create-service-principal-portal#get-tenant-and-app-id-values-for-signing-in).
70+
A list of application (client) IDs. For details of application (client) ID, refer to: [Get tenant and app ID values for signing in](https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal#get-tenant-and-app-id-values-for-signing-in).
7171
7272
```yaml
7373
Type: PSListModifier
@@ -83,10 +83,10 @@ Accept wildcard characters: False
8383
8484
### -Description
8585
86-
<TODO: description for parameter> Specifies the description of the policy.
86+
Specifies the description of the policy.
8787
8888
```yaml
89-
Type: string
89+
Type: String
9090
Parameter Sets: (All)
9191
Aliases:
9292

@@ -109,4 +109,3 @@ Accept wildcard characters: False
109109
[Get-CsApplicationAccessPolicy](Get-CsApplicationAccessPolicy.md)
110110
[Set-CsApplicationAccessPolicy](Set-CsApplicationAccessPolicy.md)
111111
[Remove-CsApplicationAccessPolicy](Remove-CsApplicationAccessPolicy.md)
112-

skype/skype-ps/skype/Remove-CsApplicationAccessPolicy.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Remove-CsApplicationAccessPolicy [-Identity <XdsIdentity>]
2626

2727
## DESCRIPTION
2828

29-
<TODO: description>
29+
This cmdlet deletes an existing application access policy.
3030

3131
## EXAMPLES
3232

@@ -46,7 +46,7 @@ Unique identifier assigned to the policy when it was created.
4646

4747
```yaml
4848
Type: XdsIdentity
49-
Parameter Sets: Identity
49+
Parameter Sets: (All)
5050
Aliases:
5151

5252
Required: True
@@ -68,4 +68,3 @@ Accept wildcard characters: False
6868
[Grant-CsApplicationAccessPolicy](Grant-CsApplicationAccessPolicy.md)
6969
[Get-CsApplicationAccessPolicy](Get-CsApplicationAccessPolicy.md)
7070
[Set-CsApplicationAccessPolicy](Set-CsApplicationAccessPolicy.md)
71-

skype/skype-ps/skype/Set-CsApplicationAccessPolicy.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Set-CsApplicationAccessPolicy [-Identity <XdsIdentity>] [-AppIds <PSListModifier
2626

2727
## DESCRIPTION
2828

29-
<TODO: description>
29+
This cmdlet modifies an existing application access policy.
3030

3131
## EXAMPLES
3232

@@ -36,7 +36,7 @@ Set-CsApplicationAccessPolicy [-Identity <XdsIdentity>] [-AppIds <PSListModifier
3636
PS C:\> Set-CsApplicationAccessPolicy -Identity "ASimplePolicy" -AppIds @{Add="5817674c-81d9-4adb-bfb2-8f6a442e4622"}
3737
```
3838

39-
The command shown above adds an new app ID "5817674c-81d9-4adb-bfb2-8f6a442e4622" to the per-user application access policy ASimplePolicy.
39+
The command shown above adds a new app ID "5817674c-81d9-4adb-bfb2-8f6a442e4622" to the per-user application access policy ASimplePolicy.
4040

4141
### Remove app IDs from the policy
4242

@@ -54,7 +54,7 @@ Unique identifier assigned to the policy when it was created.
5454

5555
```yaml
5656
Type: XdsIdentity
57-
Parameter Sets: Identity
57+
Parameter Sets: (All)
5858
Aliases:
5959

6060
Required: True
@@ -66,7 +66,7 @@ Accept wildcard characters: False
6666
6767
### -AppIds
6868
69-
<TODO: description for parameter?> A list of application (client) IDs. For details of application (client) ID, refer to: [Get tenant and app ID values for signing in](https://docs.microsoft.com/en-us/azure/active-directory/develop/howto-create-service-principal-portal#get-tenant-and-app-id-values-for-signing-in).
69+
A list of application (client) IDs. For details of application (client) ID, refer to: [Get tenant and app ID values for signing in](https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal#get-tenant-and-app-id-values-for-signing-in).
7070
7171
```yaml
7272
Type: PSListModifier
@@ -92,4 +92,3 @@ Accept wildcard characters: False
9292
[Grant-CsApplicationAccessPolicy](Grant-CsApplicationAccessPolicy.md)
9393
[Get-CsApplicationAccessPolicy](Get-CsApplicationAccessPolicy.md)
9494
[Remove-CsApplicationAccessPolicy](Remove-CsApplicationAccessPolicy.md)
95-

0 commit comments

Comments
 (0)