Skip to content

Commit a6232b7

Browse files
authored
Create Set-CsTeamsMultiTenantOrganizationConfiguration.md
Add Set-CsTeamsMultiTenantOrganizationConfiguration.md
1 parent d19fae8 commit a6232b7

File tree

1 file changed

+90
-0
lines changed

1 file changed

+90
-0
lines changed
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
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 Set Multi-tenant Organization tenant settings for current tenant.
17+
18+
## SYNTAX
19+
20+
```
21+
Set-CsTeamsMultiTenantOrganizationConfiguration
22+
[[-Identity] <string>]
23+
[-CopilotFromHomeTenant <Enabled/Disabled>]
24+
```
25+
26+
## DESCRIPTION
27+
The Set-CsTeamsMultiTenantOrganizationConfiguration set tenant setting for Multi-tenant Organization, including CopilotFromHomeTenant, which specifies whether users in a Multi-Tenant Organization are allowed to utilize their Copilot license from their home tenant during cross-tenant meetings.
28+
This cmdlet sets the Teams Multi-tenant Organization tenant setting, CopilotFromHomeTenant, for the tenant. The value of CopilotFromHomeTenant can be set to "Enabled" or "Disabled".
29+
30+
## EXAMPLES
31+
32+
### Example 1
33+
```powershell
34+
PS C:\> Set-CsTeamsMultiTenantOrganizationConfiguration -Identity Global -CopilotFromHomeTenant Disabled
35+
```
36+
37+
Set Teams Multi-tenant Organization Setting "CopilotFromHomeTenant" value to "Disabled" for global as default.
38+
39+
### Example 2
40+
```powershell
41+
PS C:\> Set-CsTeamsMultiTenantOrganizationConfiguration -Identity Global -CopilotFromHomeTenant Enabled
42+
43+
```
44+
45+
Set Teams Multi-tenant Organization Setting "CopilotFromHomeTenant" value to "Enabled" for global as default.
46+
47+
## PARAMETERS
48+
49+
### -Identity
50+
Identity of the Teams Multi-tenant Organization Setting.
51+
52+
```yaml
53+
Type: String
54+
Parameter Sets: (All)
55+
Aliases:
56+
57+
Required: True
58+
Position: Named
59+
Default value: None
60+
Accept pipeline input: False
61+
Accept wildcard characters: False
62+
```
63+
64+
### -CopilotFromHomeTenant
65+
Setting value of the Teams Multi-tenant Organization Setting. CopilotFromHomeTenant controls user access to Copilot license in their home tenant during cross-tenant meetings.
66+
67+
```yaml
68+
Type: Boolean
69+
Parameter Sets: ("Enabled","Disabled")
70+
Aliases:
71+
72+
Required: True
73+
Position: Named
74+
Default value: Enabled
75+
Accept pipeline input: False
76+
Accept wildcard characters: False
77+
```
78+
79+
### CommonParameters
80+
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).
81+
82+
## INPUTS
83+
84+
## OUTPUTS
85+
86+
## NOTES
87+
88+
## RELATED LINKS
89+
90+
[Get-CsTeamsMultiTenantOrganizationConfiguration](https://learn.microsoft.com/powershell/module/teams/get-csteamsmultitenantorganizationconfiguration)

0 commit comments

Comments
 (0)