Skip to content

Commit 40b4e41

Browse files
authored
Merge branch 'main' into patch-2
2 parents bd54367 + 2235ee9 commit 40b4e41

7 files changed

+568
-11
lines changed

teams/teams-ps/teams/Get-CsApplicationAccessPolicy.md

Lines changed: 51 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,17 @@ Retrieves information about the application access policy configured for use in
1818

1919
## SYNTAX
2020

21-
### Identity
21+
### Identity (Default)
2222

23+
```powershell
24+
Get-CsApplicationAccessPolicy [[-Identity] <String>] [-MsftInternalProcessingMode <String>]
25+
[<CommonParameters>]
2326
```
24-
Get-CsApplicationAccessPolicy [-Identity <XdsIdentity>]
27+
28+
### Filter
29+
30+
```powershell
31+
Get-CsApplicationAccessPolicy [-MsftInternalProcessingMode <String>] [-Filter <String>] [<CommonParameters>]
2532
```
2633

2734
## DESCRIPTION
@@ -32,15 +39,15 @@ This cmdlet retrieves information about the application access policy configured
3239

3340
### Retrieve all application access policies
3441

35-
```
42+
```powershell
3643
PS C:\> Get-CsApplicationAccessPolicy
3744
```
3845

3946
The command shown above returns information of all application access policies that have been configured for use in the tenant.
4047

4148
### Retrieve specific application access policy
4249

43-
```
50+
```powershell
4451
PS C:\> Get-CsApplicationAccessPolicy -Identity "ASimplePolicy"
4552
```
4653

@@ -65,6 +72,42 @@ Accept pipeline input: False
6572
Accept wildcard characters: False
6673
```
6774
75+
### -Filter
76+
77+
A filter that is not expressed in the standard wildcard language.
78+
79+
```yaml
80+
Type: String
81+
Parameter Sets: Filter
82+
Aliases:
83+
84+
Required: False
85+
Position: Named
86+
Default value: None
87+
Accept pipeline input: False
88+
Accept wildcard characters: False
89+
```
90+
91+
### -MsftInternalProcessingMode
92+
93+
For internal use only.
94+
95+
```yaml
96+
Type: String
97+
Parameter Sets: (All)
98+
Aliases:
99+
100+
Required: False
101+
Position: Named
102+
Default value: None
103+
Accept pipeline input: False
104+
Accept wildcard characters: False
105+
```
106+
107+
### CommonParameters
108+
109+
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).
110+
68111
## INPUTS
69112
70113
## OUTPUTS
@@ -73,7 +116,7 @@ Accept wildcard characters: False
73116
74117
## RELATED LINKS
75118
76-
[New-CsApplicationAccessPolicy](New-CsApplicationAccessPolicy.md)
77-
[Grant-CsApplicationAccessPolicy](Grant-CsApplicationAccessPolicy.md)
78-
[Set-CsApplicationAccessPolicy](Set-CsApplicationAccessPolicy.md)
79-
[Remove-CsApplicationAccessPolicy](Remove-CsApplicationAccessPolicy.md)
119+
[New-CsApplicationAccessPolicy](New-CsApplicationAccessPolicy.md)<br>
120+
[Grant-CsApplicationAccessPolicy](Grant-CsApplicationAccessPolicy.md)<br>
121+
[Set-CsApplicationAccessPolicy](Set-CsApplicationAccessPolicy.md)<br>
122+
[Remove-CsApplicationAccessPolicy](Remove-CsApplicationAccessPolicy.md)<br>
Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
---
2+
external help file: Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll-Help.xml
3+
Module Name: MicrosoftTeams
4+
online version: https://learn.microsoft.com/powershell/module/teams/get-csteamsfilespolicy
5+
schema: 2.0.0
6+
---
7+
8+
# Get-CsTeamsFilesPolicy
9+
10+
## SYNOPSIS
11+
Use the \`Get-CsTeamsFilesPolicy\` cmdlet to get a list of all pre-configured policy instances related to teams files.
12+
13+
## SYNTAX
14+
15+
### Identity (Default)
16+
```
17+
Get-CsTeamsFilesPolicy [[-Identity] <String>] [<CommonParameters>]
18+
```
19+
20+
### Filter
21+
```
22+
Get-CsTeamsFilesPolicy [-Filter <String>] [<CommonParameters>]
23+
```
24+
25+
## DESCRIPTION
26+
This cmdlet retrieves information about one or more teams files policies that have been configured for use in your organization.
27+
teams files policies are used by the organization to manage files-related features such as third party storage provider for files from teams.
28+
29+
## EXAMPLES
30+
31+
### Example 1
32+
```
33+
Get-CsTeamsFilesPolicy
34+
```
35+
36+
In Example 1, the Get-CsTeamsFilesPolicy cmdlet is called without any additional parameters; this returns a collection of all the teams files policies configured for use in your organization.
37+
38+
### Example 2
39+
```
40+
Get-CsTeamsFilesPolicy -Identity TranscriptionDisabled
41+
```
42+
43+
In Example 2, the Get-CsTeamsFilesPolicy cmdlet is used to return the per-user teams files policy that has an Identity TranscriptionDisabled.
44+
Because identities are unique, this command will never return more than one item.
45+
46+
### Example 3
47+
```
48+
Get-CsTeamsFilesPolicy -Filter "tag:*"
49+
```
50+
51+
Example 3 uses the Filter parameter to return all the teams files policies that have been configured at the per-user scope.
52+
The filter value "tag:*" tells the Get-CsTeamsFilesPolicy cmdlet to return only those policies that have an Identity that begins with the string value "tag:".
53+
54+
## PARAMETERS
55+
56+
### -Identity
57+
A unique identifier specifying the scope, and in some cases the name, of the policy.
58+
If this parameter is omitted, all teams files policies available for use are returned.
59+
60+
```yaml
61+
Type: String
62+
Parameter Sets: Identity
63+
Aliases:
64+
65+
Required: False
66+
Position: 1
67+
Default value: None
68+
Accept pipeline input: False
69+
Accept wildcard characters: False
70+
```
71+
72+
### -Filter
73+
This parameter accepts a wildcard string and returns all teams files policies with identities matching that string.
74+
For example, a Filter value of Tag:* will return all preconfigured teams files policy instances (excluding forest default "Global") available to use by the tenant admins.
75+
76+
```yaml
77+
Type: String
78+
Parameter Sets: Filter
79+
Aliases:
80+
81+
Required: False
82+
Position: Named
83+
Default value: None
84+
Accept pipeline input: False
85+
Accept wildcard characters: False
86+
```
87+
88+
### CommonParameters
89+
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).
90+
91+
## INPUTS
92+
93+
### None
94+
## OUTPUTS
95+
96+
### System.Object
97+
## NOTES
98+
99+
## RELATED LINKS
100+
101+
[Set-CsTeamsFilesPolicy]()
102+
103+
[New-CsTeamsFilesPolicy]()
104+
105+
[Remove-CsTeamsFilesPolicy]()
106+
107+
[Grant-CsTeamsFilesPolicy]()
108+
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
---
2+
external help file: MicrosoftTeams-help.xml
3+
Module Name: MicrosoftTeams
4+
online version: https://learn.microsoft.com/powershell/module/teams/get-csteamssettingscustomapp
5+
schema: 2.0.0
6+
---
7+
8+
# Get-CsTeamsSettingsCustomApp
9+
10+
## SYNOPSIS
11+
Get the Custom Apps Setting's value of Teams Admin Center.
12+
13+
## SYNTAX
14+
15+
```
16+
Get-CsTeamsSettingsCustomApp [-WhatIf] [-Confirm] [<CommonParameters>]
17+
```
18+
19+
## DESCRIPTION
20+
There is a switch for managing Custom Apps in the Org-wide app settings page of Teams Admin Center. The command can get the current value of this switch. If the switch is enabled, the custom apps can be uploaded as app packages and available in the organization's app store, vice versa.
21+
22+
## EXAMPLES
23+
24+
### Example 1
25+
```powershell
26+
PS C:\> Get-CsTeamsSettingsCustomApp
27+
28+
IsSideloadedAppsInteractionEnabled
29+
----------------------------------
30+
False
31+
```
32+
33+
Get the value of Custom Apps Setting. The value in the example is False, so custom apps are unavailable in the organization's app store.
34+
35+
## PARAMETERS
36+
37+
### -Confirm
38+
Prompts you for confirmation before running the cmdlet.
39+
40+
```yaml
41+
Type: SwitchParameter
42+
Parameter Sets: (All)
43+
Aliases: cf
44+
45+
Required: False
46+
Position: Named
47+
Default value: None
48+
Accept pipeline input: False
49+
Accept wildcard characters: False
50+
```
51+
52+
### -WhatIf
53+
Shows what would happen if the cmdlet runs.
54+
The cmdlet is not run.
55+
56+
```yaml
57+
Type: SwitchParameter
58+
Parameter Sets: (All)
59+
Aliases: wi
60+
61+
Required: False
62+
Position: Named
63+
Default value: None
64+
Accept pipeline input: False
65+
Accept wildcard characters: False
66+
```
67+
68+
### CommonParameters
69+
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).
70+
71+
## INPUTS
72+
73+
### None
74+
75+
## OUTPUTS
76+
77+
### System.Object
78+
## NOTES
79+
80+
## RELATED LINKS
81+
[Set-CsTeamsSettingsCustomApp](Set-CsTeamsSettingsCustomApp.md)

0 commit comments

Comments
 (0)