Skip to content

Commit aa458c6

Browse files
authored
Update Set-AvailabilityConfig.md
1 parent 5308a74 commit aa458c6

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

exchange/exchange-ps/exchange/Set-AvailabilityConfig.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The Set-AvailabilityConfig cmdlet defines two accounts or security groups: a per
3636

3737
For cross-forest availability services to retrieve free/busy information in the current forest, they must be using one of the specified accounts, belong to one of the specified security groups, or have a username and password for one of the specified accounts or security groups.
3838

39-
For Exchange Online the cmdlets lets you update the set of tenant ids with whome sharing of free/busy information is allowed.
39+
In Exchange Online, this cmdlet lets you update the set of tenant ids that free/busy information sharing is allowed with.
4040

4141
You need to be assigned permissions before you can run this cmdlet. Although this topic lists all parameters for the cmdlet, you may not have access to some parameters if they're not included in the permissions assigned to you. To find the permissions required to run any cmdlet or parameter in your organization, see [Find the permissions required to run any Exchange cmdlet](https://learn.microsoft.com/powershell/exchange/find-exchange-cmdlet-permissions).
4242

@@ -58,16 +58,21 @@ This example is useful if the remote forest isn't trusted. Because this account
5858

5959
### Example 3
6060
```powershell
61-
Set-AvailabilityConfig -AllowedTenantIds "d6b0a40e-029b-43f2-9852-f3724f68ead9, 87d5bade-cefc-4067-a221-794aea71922d"
61+
Set-AvailabilityConfig -AllowedTenantIds "d6b0a40e-029b-43f2-9852-f3724f68ead9","87d5bade-cefc-4067-a221-794aea71922d"
6262
```
6363

64-
In this example for Exchange Online, the availability config is updated to allow sharing of free/busy with tenants that are represented by the ids listed.
65-
64+
In this example for Exchange Online, the availability config is modified to allow free/busy sharing only with the specified tenants.
6665

6766
## PARAMETERS
6867

6968
### -AllowedTenantIds
70-
This parameter is used to set the list tenant ids with whome to share the free/busy information with. Maximum of 25 tenant ids is allowed.
69+
This parameter is available only in the cloud-based service.
70+
71+
The AllowedTenantIds parameter specifies the Microsoft 365 organizations that you want to share free/busy information with. You identify the organizations using their tenant ID values (for example, d6b0a40e-029b-43f2-9852-f3724f68ead9). You can specifiy multiple values separated by commas. A maximum of 25 values are allowed.
72+
73+
To replace all existing tenant IDs with the values you specify, use the following syntax: `"TenantID1","TenantID2",..."TenantID25"`.
74+
75+
To add or remove tenant IDs without affecting other existing values, use the following syntax: `@{Add="TenantID1","TenantID2",...; Remove="TenantID3","TenantID4",...}`.
7176

7277
```yaml
7378
Type: MultiValuedProperty

0 commit comments

Comments
 (0)