-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Adding public documentation to new tenant setting: TeamsMultiTenantOrganizationConfiguration #12394
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
d19fae8
Create Get-CsTeamsMultiTenantOrganizationConfiguration.md
SamLyuubc a6232b7
Create Set-CsTeamsMultiTenantOrganizationConfiguration.md
SamLyuubc 22db10c
Update Get-CsTeamsMultiTenantOrganizationConfiguration.md
SamLyuubc 0bcafd9
Update Get-CsTeamsMultiTenantOrganizationConfiguration.md
SamLyuubc 6b977b1
Update Set-CsTeamsMultiTenantOrganizationConfiguration.md
SamLyuubc 5b458f0
Merge branch 'main' into main
padmagit77 f9e6055
Pencil edit
padmagit77 7dd62a9
Pencil fix
padmagit77 901bb6b
Tried to provide site relative links
padmagit77 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
50 changes: 50 additions & 0 deletions
50
teams/teams-ps/teams/Get-CsTeamsMultiTenantOrganizationConfiguration.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml | ||
Module Name: MicrosoftTeams | ||
applicable: Microsoft Teams | ||
title: Get-CsTeamsMultiTenantOrganizationConfiguration | ||
online version: https://learn.microsoft.com/powershell/module/teams/get-csteamsmultitenantorganizationconfiguration | ||
schema: 2.0.0 | ||
author: samlyu | ||
ms.author: samlyu | ||
--- | ||
|
||
# Get-CsTeamsMultiTenantOrganizationConfiguration | ||
|
||
## SYNOPSIS | ||
|
||
This cmdlet retrieves tenant settings for Multi-tenant Organzation. | ||
|
||
## SYNTAX | ||
|
||
``` | ||
Get-CsTeamsMultiTenantOrganizationConfiguration [<CommonParameters>] | ||
``` | ||
|
||
## DESCRIPTION | ||
|
||
The new 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. | ||
SamLyuubc marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
||
## EXAMPLES | ||
|
||
### Example 1 | ||
```powershell | ||
PS C:\> Get-CsTeamsMultiTenantOrganizationConfiguration | ||
``` | ||
|
||
Retrieves tenant's Multi-tenant Organization Configuration, including CopilotFromHomeTenant. | ||
|
||
## PARAMETERS | ||
|
||
### CommonParameters | ||
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). | ||
|
||
## INPUTS | ||
|
||
## OUTPUTS | ||
|
||
## NOTES | ||
|
||
## RELATED LINKS | ||
|
||
[Set-CsTeamsMultiTenantOrganizationConfiguration](https://learn.microsoft.com/powershell/module/teams/set-csteamsmultitenantorganizationconfiguration) | ||
SamLyuubc marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
90 changes: 90 additions & 0 deletions
90
teams/teams-ps/teams/Set-CsTeamsMultiTenantOrganizationConfiguration.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
--- | ||
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml | ||
Module Name: MicrosoftTeams | ||
applicable: Microsoft Teams | ||
title: Set-CsTeamsMultiTenantOrganizationConfiguration | ||
online version: https://learn.microsoft.com/powershell/module/teams/set-csteamsmultitenantorganizationconfiguration | ||
schema: 2.0.0 | ||
author: samlyu | ||
ms.author: samlyu | ||
--- | ||
|
||
# Set-CsTeamsMultiTenantOrganizationConfiguration | ||
|
||
## SYNOPSIS | ||
|
||
This cmdlet Set Multi-tenant Organization tenant settings for current tenant. | ||
SamLyuubc marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
||
## SYNTAX | ||
|
||
``` | ||
Set-CsTeamsMultiTenantOrganizationConfiguration | ||
[[-Identity] <string>] | ||
[-CopilotFromHomeTenant <Enabled/Disabled>] | ||
``` | ||
|
||
## DESCRIPTION | ||
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. | ||
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". | ||
SamLyuubc marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
||
## EXAMPLES | ||
|
||
### Example 1 | ||
```powershell | ||
PS C:\> Set-CsTeamsMultiTenantOrganizationConfiguration -Identity Global -CopilotFromHomeTenant Disabled | ||
``` | ||
|
||
Set Teams Multi-tenant Organization Setting "CopilotFromHomeTenant" value to "Disabled" for global as default. | ||
|
||
### Example 2 | ||
```powershell | ||
PS C:\> Set-CsTeamsMultiTenantOrganizationConfiguration -Identity Global -CopilotFromHomeTenant Enabled | ||
|
||
``` | ||
|
||
Set Teams Multi-tenant Organization Setting "CopilotFromHomeTenant" value to "Enabled" for global as default. | ||
|
||
## PARAMETERS | ||
|
||
### -Identity | ||
Identity of the Teams Multi-tenant Organization Setting. | ||
|
||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: True | ||
Position: Named | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
|
||
### -CopilotFromHomeTenant | ||
Setting value of the Teams Multi-tenant Organization Setting. CopilotFromHomeTenant controls user access to Copilot license in their home tenant during cross-tenant meetings. | ||
|
||
```yaml | ||
Type: Boolean | ||
Parameter Sets: ("Enabled","Disabled") | ||
Aliases: | ||
|
||
Required: True | ||
Position: Named | ||
Default value: Enabled | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
|
||
### CommonParameters | ||
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). | ||
|
||
## INPUTS | ||
|
||
## OUTPUTS | ||
|
||
## NOTES | ||
|
||
## RELATED LINKS | ||
|
||
[Get-CsTeamsMultiTenantOrganizationConfiguration](https://learn.microsoft.com/powershell/module/teams/get-csteamsmultitenantorganizationconfiguration) | ||
SamLyuubc marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.