Applies to: Exchange Server 2013

Topic Last Modified: 2012-12-04

An organization relationship enables users in your Exchange organization to share calendar free/busy information as part of federated sharing with other federated Exchange organizations. In the course of normal operations, Exchange organizations may want to change several of the properties of an organization relationship, such as changing the name of the organization relationship, temporarily disabling calendar free/busy sharing with the external Exchange organization, changing the free/busy access level, or changing which security groups in your organization are enabled for calendar free/busy sharing.

To learn more about federated sharing, see Sharing.

For additional management tasks related to federation, see Federation Procedures.

What do you need to know before you begin?

  • Estimated time to complete: 15 minutes.

  • You need to be assigned permissions before you can perform this procedure or procedures. To see what permissions you need, see the Calendar and Sharing Permissions entry in the Recipients Permissions topic.

  • An active federation trust for the on-premise Exchange organization must be configured.

  • The external organization you want to configure in the organization relationship must have a federation trust established with the Microsoft Federation Gateway.

  • The procedures in this topic cover the following management tasks for modifying an organization relationship named Contoso:

    • Adding an additional domain named service.contoso.com to the external federated Exchange organization.

    • Disabling free/busy sharing for the organization relationship.

    • Changing the free/busy access level from Calendar free/busy information with time, subject, and location to Calendar free/busy information with time only.

  • For information about keyboard shortcuts that may apply to the procedures in this topic, see Keyboard Shortcuts in the Exchange Admin Center.

What do you want to do?

Use the EAC to add an additional domain for an external federated Exchange organization

  1. On an Exchange 2013 server in your on-premises organization, navigate to Organization > Sharing.

  2. In list view, under Organization Sharing, select the organization relationship Contoso, and then click Edit Edit Icon.

  3. In Modify organization relationship, leave the Relationship name for the organization relationship as Contoso.

  4. In the Domain to share with box, after the existing domain contoso.com, add the federated domain service.contoso.com for the external federated Exchange organization, separated by a comma For example, contoso.com, service.contoso.com.

  5. Don’t change the settings for the Enable calendar free/busy information sharing check box or the free/busy access level and security group buttons.

  6. Click Save to update the organization relationship.

Use the EAC to disable free/busy sharing for the organization relationship

  1. Navigate to Organization > Sharing.

  2. In the list view, under Organization Sharing, select the organization relationship Contoso, and then click Edit Edit Icon.

  3. In Modify organization relationship, leave the Relationship name for the organization relationship as Contoso.

  4. Leave the Domain to share with box as configured.

  5. Clear the Enable calendar free/busy information sharing check box to disable free/busy sharing. The free/busy access level and security group buttons will also be disabled.

  6. Click Save to update the organization relationship.

Use the EAC to change the free/busy access level for the organization relationship

  1. Navigate to Organization > Sharing.

  2. In list view, under Organization Sharing, select the organization relationship Contoso, and then click Edit Edit Icon.

  3. In Modify organization relationship, leave the Relationship name for the organization relationship as Contoso.

  4. Leave the Domain to share with box as configured.

  5. Select the free/busy access level button for Calendar free/busy information with time only.

  6. Click Save to update the organization relationship.

Use the Shell to modify the organization relationship

  • This example adds the domain name service.contoso.com to the organization relationship Contoso.

    Copy Code
    $domains = (Get-OrganizationRelationship Contoso).DomainNames
    $domains += 'service.contoso.com'
    Set-OrganizationRelationship -Identity Contoso -DomainNames $domains
    
  • This example disables the organization relationship Contoso.

    Copy Code
    Set-OrganizationRelationship -Identity Contoso -Enabled $false
    
  • This example enables calendar availability information access for the organization relationship WoodgroveBank and sets the access level to AvailabilityOnly (calendar free/busy information with time only).

    Copy Code
    Set-OrganizationRelationship -Identity Contoso -FreeBusyAccessEnabled $true -FreeBusyAccessLevel AvailabilityOnly
    

For detailed syntax and parameter information, see Get-OrganizationRelationship and Set-OrganizationRelationship.

How do you know this worked?

To verify that you have successfully updated the organization relationship, run the following Shell command and verify the organization relationship information.

Copy Code
Get-OrganizationRelationship | format-list
Tip:
Having problems? Ask for help in the Exchange forums. Visit the forums at: Exchange Server, Exchange Online, or Exchange Online Protection