Skip to content

Commit c87c79c

Browse files
authored
Merge pull request #12318 from srimantabagchi/patch-4
Create Get-M365UnifiedTenantSettings.md
2 parents c308267 + 99c29c9 commit c87c79c

File tree

1 file changed

+100
-0
lines changed

1 file changed

+100
-0
lines changed
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
---
2+
external help file: Microsoft.Teams.PowerShell.TeamsCmdlets.dll-Help.xml
3+
Module Name: MicrosoftTeams
4+
online version: https://docs.microsoft.com/powershell/module/teams/Get-M365UnifiedTenantSettings
5+
applicable: Microsoft Teams
6+
title: Get-M365UnifiedTenantSettings
7+
author: lkueter
8+
ms.author: sribagchi
9+
manager: rahulrgupta
10+
ms.date: 10/22/2024
11+
schema: 2.0.0
12+
---
13+
14+
# Get-M365UnifiedTenantSettings
15+
16+
## SYNOPSIS
17+
18+
This cmdlet returns the current tenant settings for a particular tenant
19+
20+
## SYNTAX
21+
22+
```powershell
23+
Get-M365UnifiedTenantSettings -SettingNames <String[]> [<CommonParameters>]
24+
```
25+
26+
## DESCRIPTION
27+
28+
Get-M365UnifiedTenantSettings retrieves the current tenant settings for a particular tenant.
29+
30+
## EXAMPLES
31+
32+
### Example 1
33+
34+
```powershell
35+
PS C:\> Get-M365UnifiedTenantSettings
36+
```
37+
38+
Returns all the current tenant settings for this tenant.
39+
40+
### Example 2
41+
42+
```powershell
43+
PS C:\> Get-M365UnifiedTenantSettings -SettingNames DefaultApp
44+
```
45+
46+
Returns the current tenant setting for DefaultApp for this tenant.
47+
48+
### Example 3
49+
50+
```powershell
51+
PS C:\> Get-M365UnifiedTenantSettings -SettingNames DefaultApp,EnableCopilotExtensibility
52+
```
53+
54+
Returns the current tenant setting for DefaultApp and EnableCopilotExtensibility for this tenant.
55+
56+
## PARAMETERS
57+
58+
### -SettingNames
59+
60+
Setting names requested. Possible values - DefaultApp,GlobalApp,PrivateApp,EnableCopilotExtensibility
61+
62+
```yaml
63+
Type: String
64+
Aliases:
65+
66+
Required: False
67+
Position: Named
68+
Default value: None
69+
Accept pipeline input: False
70+
Accept wildcard characters: False
71+
```
72+
73+
### CommonParameters
74+
75+
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).
76+
77+
## INPUTS
78+
79+
### None
80+
81+
## OUTPUTS
82+
83+
### System.Object
84+
85+
**SettingName**
86+
Setting Name returned.
87+
88+
**SettingValue**
89+
The status of this setting in the tenant.
90+
Values:
91+
92+
- All
93+
- None
94+
- Some (only applicable for EnableCopilotExtensibility)
95+
96+
**Users**
97+
The list of users this setting is applicable to (only applicable for EnableCopilotExtensibility).
98+
99+
**Groups**
100+
The list of groups this setting is applicable to (only applicable for EnableCopilotExtensibility).

0 commit comments

Comments
 (0)