You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: skype/skype-ps/skype/Grant-CsTeamsAppPermissionPolicy.md
+18-10Lines changed: 18 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,12 @@ schema: 2.0.0
9
9
10
10
## SYNOPSIS
11
11
12
+
As an admin, you can use app permission policies to enable or block specific apps for your users. Learn more about the App Permission Policies: https://docs.microsoft.com/en-us/microsoftteams/teams-app-permission-policies.
13
+
14
+
**We require that all creation and modification of app setup polices (not including the assignment or removal of policies from users) happens in the Microsoft Teams & Skype for Business Admin Center to ensure that the policy matches your expectations for the end user experience.**
15
+
16
+
You can use this cmdlet to assign a specific custom policy to a user.
As an admin, you can use app permission policies to enable or block specific apps for your users. Learn more about the App Permission Policies: https://docs.microsoft.com/en-us/microsoftteams/teams-app-permission-policies.
34
+
35
+
**We require that all creation and modification of app setup polices (not including the assignment or removal of policies from users) happens in the Microsoft Teams & Skype for Business Admin Center to ensure that the policy matches your expectations for the end user experience.**
36
+
37
+
You can use this cmdlet to assign a specific custom policy to a user.
Resets the values in the global policy to match those in the provided (PolicyName) policy. Note that this means all users with no explicit policy assigned will have these new policy settings.
The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null.
Copy file name to clipboardExpand all lines: skype/skype-ps/skype/New-CsTeamsAppPermissionPolicy.md
+8-6Lines changed: 8 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -9,19 +9,21 @@ schema: 2.0.0
9
9
10
10
## SYNOPSIS
11
11
12
+
As an admin, you can use app permission policies to enable or block specific apps for your users. Learn more about the App Setup Policies: https://docs.microsoft.com/en-us/microsoftteams/teams-app-permission-policies.
13
+
14
+
The existence of this cmdlet is being documented for completeness, but do not use this cmdlet. **We require that all creation and modification of app permission polices (not including the assignment or removal of policies from users) happens in the Microsoft Teams & Skype for Business Admin Center to ensure that the policy matches your expectations for the end user experience.**
15
+
12
16
## SYNTAX
13
17
14
18
## DESCRIPTION
15
-
{{Fill in the Description}}
19
+
As an admin, you can use app permission policies to enable or block specific apps for your users. Learn more about the App Setup Policies: https://docs.microsoft.com/en-us/microsoftteams/teams-app-permission-policies.
20
+
21
+
The existence of this cmdlet is being documented for completeness, but do not use this cmdlet. **We require that all creation and modification of app permission polices (not including the assignment or removal of policies from users) happens in the Microsoft Teams & Skype for Business Admin Center to ensure that the policy matches your expectations for the end user experience.**
Copy file name to clipboardExpand all lines: skype/skype-ps/skype/Remove-CsTeamsAppPermissionPolicy.md
+102-4Lines changed: 102 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -9,25 +9,123 @@ schema: 2.0.0
9
9
10
10
## SYNOPSIS
11
11
12
+
As an admin, you can use app permission policies to enable or block specific apps for your users. Learn more about the App Permission Policies: https://docs.microsoft.com/en-us/microsoftteams/teams-app-permission-policies.
13
+
14
+
**We require that all creation and modification of app permission polices (not including the assignment or removal of policies from users) happens in the Microsoft Teams & Skype for Business Admin Center to ensure that the policy matches your expectations for the end user experience.**
15
+
16
+
This cmdlet allows you to remove app permission policies that have been created within your organization. If you run Remove-CsTeamsAppPermissionPolicy on the Global policy, it will be reset to the defaults provided for new organizations.
As an admin, you can use app permission policies to enable or block specific apps for your users. Learn more about the App Permission Policies: https://docs.microsoft.com/en-us/microsoftteams/teams-app-permission-policies.
27
+
28
+
**We require that all creation and modification of app permission polices (not including the assignment or removal of policies from users) happens in the Microsoft Teams & Skype for Business Admin Center to ensure that the policy matches your expectations for the end user experience.**
29
+
30
+
This cmdlet allows you to remove app permission policies that have been created within your organization. If you run Remove-CsTeamsAppPermissionPolicy on the Global policy, it will be reset to the defaults provided for new organizations.
Deletes a custom policy that has already been created in the organization.
25
40
26
41
## PARAMETERS
27
42
43
+
### -Identity
44
+
Unique identifier for the policy to be removed.
45
+
To "remove" the global policy, use the following syntax: `-Identity global`.
46
+
(Note that the global policy cannot actually be removed. Instead, all the properties in that policy will be reset to their default values.) To remove a per-user policy, use syntax similar to this: `-Identity "SalesDepartmentPolicy"`.
47
+
You cannot use wildcards when specifying a policy Identity.
48
+
49
+
```yaml
50
+
Type: XdsIdentity
51
+
Parameter Sets: (All)
52
+
Aliases:
53
+
Applicable: Skype for Business Online
54
+
55
+
Required: True
56
+
Position: 2
57
+
Default value: None
58
+
Accept pipeline input: True (ByPropertyName)
59
+
Accept wildcard characters: False
60
+
```
61
+
62
+
### -Force
63
+
Suppresses all non-fatal errors.
64
+
65
+
```yaml
66
+
Type: SwitchParameter
67
+
Parameter Sets: (All)
68
+
Aliases:
69
+
Applicable: Skype for Business Online
70
+
71
+
Required: False
72
+
Position: Named
73
+
Default value: None
74
+
Accept pipeline input: False
75
+
Accept wildcard characters: False
76
+
```
77
+
78
+
### -WhatIf
79
+
Describes what would happen if you executed the command without actually executing the command.
80
+
81
+
```yaml
82
+
Type: SwitchParameter
83
+
Parameter Sets: (All)
84
+
Aliases: wi
85
+
Applicable: Skype for Business Online
86
+
87
+
Required: False
88
+
Position: Named
89
+
Default value: None
90
+
Accept pipeline input: False
91
+
Accept wildcard characters: False
92
+
```
93
+
94
+
### -Confirm
95
+
Prompts you for confirmation before executing the command.
96
+
97
+
```yaml
98
+
Type: SwitchParameter
99
+
Parameter Sets: (All)
100
+
Aliases: cf
101
+
Applicable: Skype for Business Online
102
+
103
+
Required: False
104
+
Position: Named
105
+
Default value: None
106
+
Accept pipeline input: False
107
+
Accept wildcard characters: False
108
+
```
109
+
110
+
### -Tenant
111
+
Internal Microsoft use only.
112
+
113
+
```yaml
114
+
Type: Guid
115
+
Parameter Sets: (All)
116
+
Aliases:
117
+
Applicable: Skype for Business Online
118
+
119
+
Required: False
120
+
Position: Named
121
+
Default value: None
122
+
Accept pipeline input: False
123
+
Accept wildcard characters: False
124
+
```
125
+
28
126
### CommonParameters
29
127
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
30
-
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
128
+
For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
Copy file name to clipboardExpand all lines: skype/skype-ps/skype/Set-CsUser.md
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -59,6 +59,13 @@ In Example 2, all the users in the Finance department have their accounts enable
59
59
In this command, the `Get-CsUser` cmdlet and the LdapFilter parameter are first used to return a collection of all the users who work in the Finance department.
60
60
That information is then piped to the `Set-CsUser` cmdlet, which enables Enterprise Voice for each account in the collection.
61
61
62
+
### -------------------------- Example 3 --------------------------
0 commit comments