Skip to content

Commit 2168076

Browse files
authored
Merge pull request MicrosoftDocs#3728 from etgottli/etgottli/moveFiles
Move packaging cmdlet docs to correct directory
2 parents afabaf8 + a4431f4 commit 2168076

File tree

3 files changed

+224
-230
lines changed

3 files changed

+224
-230
lines changed
Lines changed: 74 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -1,76 +1,74 @@
1-
---
2-
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml
3-
Module Name: MicrosoftTeams
4-
applicable: Microsoft Teams
5-
title: Get-TeamPolicyPackage
6-
author: etgottli
7-
ms.author: etgottli
8-
ms.reviewer: icchan
9-
manager: amitar
10-
online version:
11-
schema: 2.0.0
12-
---
13-
14-
# Get-TeamPolicyPackage
15-
16-
## SYNOPSIS
17-
18-
This cmdlet supports retrieving all the policy packages available on a tenant.
19-
20-
## SYNTAX
21-
22-
```
23-
Get-TeamPolicyPackage [[-Identity] <String>] [<CommonParameters>]
24-
```
25-
26-
## DESCRIPTION
27-
28-
This cmdlet supports retrieving all the policy packages available on a tenant. Provide the identity of a specific policy package to retrieve its definition, including details on the policies applied with the package.
29-
For more information on policy packages, please review https://docs.microsoft.com/en-us/MicrosoftTeams/manage-policy-packages
30-
31-
## EXAMPLES
32-
33-
### Example 1
34-
```powershell
35-
PS C:\> Get-TeamPolicyPackage
36-
```
37-
38-
Returns all policy packages available on the tenant.
39-
40-
### Example 2
41-
```powershell
42-
PS C:\> Get-TeamPolicyPackage -Identity Education_PrimaryStudent
43-
```
44-
45-
Returns the definition of the Education_PrimaryStudent policy package, including the policies applied with the package.
46-
47-
## PARAMETERS
48-
49-
### -Identity
50-
51-
The name of a specific policy package. All possible policy package names can be found by running Get-TeamPolicyPackage.
52-
53-
```yaml
54-
Type: String
55-
Parameter Sets: (All)
56-
Aliases:
57-
Applicable: Microsoft Teams
58-
Required: False
59-
Position: 0
60-
Default value: None
61-
Accept pipeline input: False
62-
Accept wildcard characters: False
63-
```
64-
65-
### CommonParameters
66-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
67-
68-
## INPUTS
69-
70-
## OUTPUTS
71-
72-
## NOTES
73-
74-
## RELATED LINKS
75-
76-
https://docs.microsoft.com/en-us/MicrosoftTeams/manage-policy-packages
1+
---
2+
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml
3+
Module Name: MicrosoftTeams
4+
applicable: Microsoft Teams
5+
title: Get-TeamPolicyPackage
6+
author: etgottli
7+
ms.author: etgottli
8+
ms.reviewer: icchan
9+
manager: amitar
10+
online version:
11+
schema: 2.0.0
12+
---
13+
14+
# Get-TeamPolicyPackage
15+
16+
## SYNOPSIS
17+
18+
This cmdlet supports retrieving all the policy packages available on a tenant.
19+
20+
## SYNTAX
21+
22+
```
23+
Get-TeamPolicyPackage [[-Identity] <String>] [<CommonParameters>]
24+
```
25+
26+
## DESCRIPTION
27+
28+
This cmdlet supports retrieving all the policy packages available on a tenant. Provide the identity of a specific policy package to retrieve its definition, including details on the policies applied with the package.
29+
For more information on policy packages, please review https://docs.microsoft.com/en-us/MicrosoftTeams/manage-policy-packages
30+
31+
## EXAMPLES
32+
33+
### Example 1
34+
```powershell
35+
PS C:\> Get-TeamPolicyPackage
36+
```
37+
38+
Returns all policy packages available on the tenant.
39+
40+
### Example 2
41+
```powershell
42+
PS C:\> Get-TeamPolicyPackage -Identity Education_PrimaryStudent
43+
```
44+
45+
Returns the definition of the Education_PrimaryStudent policy package, including the policies applied with the package.
46+
47+
## PARAMETERS
48+
49+
### -Identity
50+
51+
The name of a specific policy package. All possible policy package names can be found by running Get-TeamPolicyPackage.
52+
53+
```yaml
54+
Type: String
55+
Parameter Sets: (All)
56+
Aliases:
57+
Applicable: Microsoft Teams
58+
Required: False
59+
Position: 0
60+
Default value: None
61+
Accept pipeline input: False
62+
Accept wildcard characters: False
63+
```
64+
65+
### CommonParameters
66+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
67+
68+
## INPUTS
69+
70+
## OUTPUTS
71+
72+
## NOTES
73+
74+
## RELATED LINKS
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,67 @@
1-
---
2-
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml
3-
Module Name: MicrosoftTeams
4-
applicable: Microsoft Teams
5-
title: Get-TeamUserPolicyPackageRecommendation
6-
author: etgottli
7-
ms.author: etgottli
8-
ms.reviewer: icchan
9-
manager: amitar
10-
online version:
11-
schema: 2.0.0
12-
---
13-
14-
# Get-TeamUserPolicyPackageRecommendation
15-
16-
## SYNOPSIS
17-
18-
This cmdlet supports retrieving recommendations for which policy packages are best suited for a given user.
19-
20-
## SYNTAX
21-
22-
```
23-
Get-TeamUserPolicyPackageRecommendation [-Identity] <String> [<CommonParameters>]
24-
```
25-
26-
## DESCRIPTION
27-
28-
This cmdlet supports retrieving recommendations for which policy packages are best suited for a given user. This recommendation is based on tenant and user information such as license types.
29-
For more information on policy packages, please review https://docs.microsoft.com/en-us/MicrosoftTeams/manage-policy-packages
30-
31-
## EXAMPLES
32-
33-
### Example 1
34-
```powershell
35-
PS C:\> Get-TeamUserPolicyPackageRecommendation -Identity [email protected]
36-
```
37-
38-
Returns recommendations for which policy packages are best suited for [email protected]. The recommendation value per package can either be none, weak, or strong based on how confident the existing signals (e.g. license type) imply a user role.
39-
40-
## PARAMETERS
41-
42-
### -Identity
43-
44-
The user that will receive policy package recommendations.
45-
46-
```yaml
47-
Type: String
48-
Parameter Sets: (All)
49-
Aliases:
50-
Applicable: Microsoft Teams
51-
Required: True
52-
Position: 0
53-
Default value: None
54-
Accept pipeline input: False
55-
Accept wildcard characters: False
56-
```
57-
58-
### CommonParameters
59-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
60-
61-
## INPUTS
62-
63-
## OUTPUTS
64-
65-
## NOTES
66-
67-
## RELATED LINKS
68-
69-
https://docs.microsoft.com/en-us/MicrosoftTeams/manage-policy-packages
1+
---
2+
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml
3+
Module Name: MicrosoftTeams
4+
applicable: Microsoft Teams
5+
title: Get-TeamUserPolicyPackageRecommendation
6+
author: etgottli
7+
ms.author: etgottli
8+
ms.reviewer: icchan
9+
manager: amitar
10+
online version:
11+
schema: 2.0.0
12+
---
13+
14+
# Get-TeamUserPolicyPackageRecommendation
15+
16+
## SYNOPSIS
17+
18+
This cmdlet supports retrieving recommendations for which policy packages are best suited for a given user.
19+
20+
## SYNTAX
21+
22+
```
23+
Get-TeamUserPolicyPackageRecommendation [-Identity] <String> [<CommonParameters>]
24+
```
25+
26+
## DESCRIPTION
27+
28+
This cmdlet supports retrieving recommendations for which policy packages are best suited for a given user. This recommendation is based on tenant and user information such as license types.
29+
For more information on policy packages, please review https://docs.microsoft.com/en-us/MicrosoftTeams/manage-policy-packages
30+
31+
## EXAMPLES
32+
33+
### Example 1
34+
```powershell
35+
PS C:\> Get-TeamUserPolicyPackageRecommendation -Identity [email protected]
36+
```
37+
38+
Returns recommendations for which policy packages are best suited for [email protected]. The recommendation value per package can either be none, weak, or strong based on how confident the existing signals (e.g. license type) imply a user role.
39+
40+
## PARAMETERS
41+
42+
### -Identity
43+
44+
The user that will receive policy package recommendations.
45+
46+
```yaml
47+
Type: String
48+
Parameter Sets: (All)
49+
Aliases:
50+
Applicable: Microsoft Teams
51+
Required: True
52+
Position: 0
53+
Default value: None
54+
Accept pipeline input: False
55+
Accept wildcard characters: False
56+
```
57+
58+
### CommonParameters
59+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
60+
61+
## INPUTS
62+
63+
## OUTPUTS
64+
65+
## NOTES
66+
67+
## RELATED LINKS

0 commit comments

Comments
 (0)