Skip to content

Commit e1739a4

Browse files
Merge pull request #12874 from vgudur-dev/main
Add DomainBlockingForMDOAdminsInTeams to Set-CsTenantFederationConfiguration
2 parents 907f3fd + 3e6584d commit e1739a4

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

teams/teams-ps/teams/Set-CsTenantFederationConfiguration.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Set-CsTenantFederationConfiguration [-Tenant <Guid>]
2929
[-AllowFederatedUsers <Boolean>] [-AllowTeamsConsumer <Boolean>] [-AllowTeamsConsumerInbound <Boolean>]
3030
[-TreatDiscoveredPartnersAsUnverified <Boolean>] [-SharedSipAddressSpace <Boolean>] [-RestrictTeamsConsumerToExternalUserProfiles <Boolean>]
3131
[-AllowedDomainsAsAList <List>] [-ExternalAccessWithTrialTenants <ExternalAccessWithTrialTenantsType>]
32+
[-DomainBlockingForMDOAdminsInTeams <DomainBlockingForMDOAdminsInTeamsType>]
3233
[-AllowedTrialTenantDomains <List>]
3334
[[-Identity] <XdsIdentity>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
3435
```
@@ -62,7 +63,7 @@ $x = New-CsEdgeDomainPattern -Domain "fabrikam.com"
6263
Set-CsTenantFederationConfiguration -BlockedDomains @{Replace=$x}
6364
```
6465

65-
In Example 2, the ___domain fabrikam.com is assigned as the only ___domain on the blocked domains list for current tenant.
66+
In Example 1, the ___domain fabrikam.com is assigned as the only ___domain on the blocked domains list for current tenant.
6667
To do this, the first command in the example uses the `New-CsEdgeDomainPattern` cmdlet to create a new ___domain object for fabrikam.com.
6768
This ___domain object is stored in a variable named $x.
6869

@@ -214,6 +215,11 @@ Example 15 shows how you can remove domains from the existing Allowed Trial Tena
214215
First, a List is created and domains are added to it, then use the Remove method in the `AllowedTrialTenantDomains` parameter to remove the domains from the existing allowed domains list.
215216
When this command completes, the domains in the list will be removed from the Allowed Trial Tenant Domains list.
216217

218+
### -------------------------- Example 16 -------------------------
219+
```
220+
Set-CsTenantFederationConfiguration -DomainBlockingForMDOAdminsInTeams "Enabled"
221+
```
222+
217223
## PARAMETERS
218224

219225
### -AllowedDomains
@@ -490,6 +496,23 @@ Accept pipeline input: False
490496
Accept wildcard characters: False
491497
```
492498

499+
### -DomainBlockingForMDOAdminsInTeams
500+
When set to 'Enabled', security operations team will be able to add domains to the blocklist on security portal.
501+
When set to 'Disabled', security operations team will not have permissions to update the domains blocklist.
502+
503+
```yaml
504+
Type: DomainBlockingForMDOAdminsInTeamsType
505+
Parameter Sets: (All)
506+
Aliases:
507+
Applicable: Microsoft Teams
508+
509+
Required: False
510+
Position: Named
511+
Default value: None
512+
Accept pipeline input: False
513+
Accept wildcard characters: False
514+
```
515+
493516
### -AllowedTrialTenantDomains
494517
You can whitelist specific "trial-only" tenant domains, while keeping the `ExternalAccessWithTrialTenants` set to `Blocked`. This will allow you to protect your organization against majority of tenants that don't have any paid subscriptions, while still being able to collaborate externally with those trusted trial-tenants in the list.
495518

0 commit comments

Comments
 (0)