Skip to content

Commit 49f0baa

Browse files
authored
Merge pull request MicrosoftDocs#12394 from SamLyuubc/main
Adding public documentation to new tenant setting: TeamsMultiTenantOrganizationConfiguration
2 parents 7d776e6 + 901bb6b commit 49f0baa

File tree

2 files changed

+139
-0
lines changed

2 files changed

+139
-0
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml
3+
Module Name: MicrosoftTeams
4+
applicable: Microsoft Teams
5+
title: Get-CsTeamsMultiTenantOrganizationConfiguration
6+
online version: https://learn.microsoft.com/powershell/module/teams/get-csteamsmultitenantorganizationconfiguration
7+
schema: 2.0.0
8+
author: samlyu
9+
ms.author: samlyu
10+
---
11+
12+
# Get-CsTeamsMultiTenantOrganizationConfiguration
13+
14+
## SYNOPSIS
15+
16+
This cmdlet retrieves all tenant settings for Multi-tenant Organizations
17+
18+
## SYNTAX
19+
20+
```
21+
Get-CsTeamsMultiTenantOrganizationConfiguration [<CommonParameters>]
22+
```
23+
24+
## DESCRIPTION
25+
26+
The Get-CsTeamsMultiTenantOrganizationConfiguration cmdlet enables Teams meeting administrators to retrieve the Multi-Tenant Organization settings for their tenant. This includes the *CopilotFromHomeTenant* field, which specifies whether users in a Multi-Tenant Organization are allowed to utilize their Copilot license from their home tenant during cross-tenant meetings.
27+
28+
## EXAMPLES
29+
30+
### Example 1
31+
```powershell
32+
PS C:\> Get-CsTeamsMultiTenantOrganizationConfiguration
33+
```
34+
35+
Retrieves tenant's Multi-tenant Organization Configuration, including CopilotFromHomeTenant.
36+
37+
## PARAMETERS
38+
39+
### CommonParameters
40+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
41+
42+
## INPUTS
43+
44+
## OUTPUTS
45+
46+
## NOTES
47+
48+
## RELATED LINKS
49+
50+
[Set-CsTeamsMultiTenantOrganizationConfiguration](Set-CsTeamsMultiTenantOrganizationConfiguration.md)
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
---
2+
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml
3+
Module Name: MicrosoftTeams
4+
applicable: Microsoft Teams
5+
title: Set-CsTeamsMultiTenantOrganizationConfiguration
6+
online version: https://learn.microsoft.com/powershell/module/teams/set-csteamsmultitenantorganizationconfiguration
7+
schema: 2.0.0
8+
author: samlyu
9+
ms.author: samlyu
10+
---
11+
12+
# Set-CsTeamsMultiTenantOrganizationConfiguration
13+
14+
## SYNOPSIS
15+
16+
This cmdlet configures the Multi-tenant Organization settings for the tenant.
17+
18+
## SYNTAX
19+
20+
```
21+
Set-CsTeamsMultiTenantOrganizationConfiguration
22+
[[-Identity] <string>]
23+
[-CopilotFromHomeTenant <Enabled/Disabled>]
24+
```
25+
26+
## DESCRIPTION
27+
The Set-CsTeamsMultiTenantOrganizationConfiguration cmdlet configures tenant settings for Multi-tenant Organizations. This includes the CopilotFromHomeTenant parameter, which determines if users in a Multi-Tenant Organization can use their Copilot license from their home tenant during cross-tenant meetings
28+
29+
## EXAMPLES
30+
31+
### Example 1
32+
```powershell
33+
PS C:\> Set-CsTeamsMultiTenantOrganizationConfiguration -Identity Global -CopilotFromHomeTenant Disabled
34+
```
35+
36+
Set Teams Multi-tenant Organization Setting "CopilotFromHomeTenant" value to "Disabled" for global as default.
37+
38+
### Example 2
39+
```powershell
40+
PS C:\> Set-CsTeamsMultiTenantOrganizationConfiguration -Identity Global -CopilotFromHomeTenant Enabled
41+
42+
```
43+
44+
Set Teams Multi-tenant Organization Setting "CopilotFromHomeTenant" value to "Enabled" for global as default.
45+
46+
## PARAMETERS
47+
48+
### -Identity
49+
Identity of the Teams Multi-tenant Organization Setting.
50+
51+
```yaml
52+
Type: String
53+
Parameter Sets: (All)
54+
Aliases:
55+
56+
Required: True
57+
Position: Named
58+
Default value: None
59+
Accept pipeline input: False
60+
Accept wildcard characters: False
61+
```
62+
63+
### -CopilotFromHomeTenant
64+
Setting value of the Teams Multi-tenant Organization Setting. CopilotFromHomeTenant controls user access to Copilot license in their home tenant during cross-tenant meetings.
65+
66+
```yaml
67+
Type: Boolean
68+
Parameter Sets: ("Enabled","Disabled")
69+
Aliases:
70+
71+
Required: True
72+
Position: Named
73+
Default value: Enabled
74+
Accept pipeline input: False
75+
Accept wildcard characters: False
76+
```
77+
78+
### CommonParameters
79+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
80+
81+
## INPUTS
82+
83+
## OUTPUTS
84+
85+
## NOTES
86+
87+
## RELATED LINKS
88+
89+
[Get-CsTeamsMultiTenantOrganizationConfiguration](Get-CsTeamsMultiTenantOrganizationConfiguration.md)

0 commit comments

Comments
 (0)