You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example 12 shows how you can enable the feature where you can customize your federation in ExternalAccessPolicy.
189
+
Using the `AllowedTrialTenantDomains` parameter, you can whitelist specific "trial-only" tenant domains, while keeping the `ExternalAccessWithTrialTenants` set to `Blocked`. Example 12 shows how you can set or replace domains in the Allowed Trial Tenant Domains using a List collection object.
190
+
First, a List collection is created and domains are added to it, then, simply include the `AllowedTrialTenantDomains` parameter and set the parameter value to the List object.
191
+
When this command completes, the Allowed Trial Tenant Domains list will be replaced with those domains.
184
192
193
+
### -------------------------- Example 13 --------------------------
Example 13 shows how you can add domains to the existing Allowed Trial Tenant Domains using a List collection object.
202
+
First, a List is created and domains are added to it, then, use the Add method in the `AllowedTrialTenantDomains` parameter to add the domains to the existing allowed domains list.
203
+
When this command completes, the domains in the list will be added to any domains already on the Allowed Trial Tenant Domains list.
204
+
205
+
### -------------------------- Example 14 --------------------------
Example 14 shows how you can remove domains from the existing Allowed Trial Tenant Domains using a List collection object.
214
+
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.
215
+
When this command completes, the domains in the list will be removed from the Allowed Trial Tenant Domains list.
216
+
217
+
### -------------------------- Example 15 -------------------------
Example 15 shows how you can enable the feature where you can customize your federation in ExternalAccessPolicy.
185
223
186
224
## PARAMETERS
187
225
@@ -475,6 +513,27 @@ Accept pipeline input: False
475
513
Accept wildcard characters: False
476
514
```
477
515
516
+
### -AllowedTrialTenantDomains
517
+
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.
518
+
519
+
Note:
520
+
- The list supports up to maximum 4k domains.
521
+
- If `ExternalAccessWithTrialTenants` is set to `Allowed`, then the `AllowedTrialTenantDomains` list will not be checked.
522
+
- Any domain in this list that belongs to a tenant with paid subscriptions will be ignored.
523
+
524
+
```yaml
525
+
Type: List
526
+
Parameter Sets: (All)
527
+
Aliases:
528
+
applicable: Microsoft Teams
529
+
530
+
Required: False
531
+
Position: Named
532
+
Default value: None
533
+
Accept pipeline input: False
534
+
Accept wildcard characters: False
535
+
```
536
+
478
537
### -RestrictTeamsConsumerToExternalUserProfiles
479
538
Defines if a user is restriced to collaboration with Teams Consumer (TFL) user only in Extended Directory.
0 commit comments