Applies to: Exchange Server 2013
Topic Last Modified: 2012-12-04
You can use sharing policies to control how users in your Exchange organization share calendar and contact information with users outside your organization. Sharing policies provide user-established, people-to-people sharing of both calendar and contact information with different types of external users. They support the sharing of calendar and contact information with external federated organizations, external non-federated organizations, and individuals with Internet access. To apply a specific sharing policy to users, see Apply a Sharing Policy to Mailboxes.
Important: |
---|
Creating a sharing policy is one of several steps in setting up federated sharing in your Exchange organization and requires the configuration of a federation trust for your on-premises Exchange organization when sharing calendar and contact information with other federated Exchange organizations. A federation trust isn’t required for Internet sharing policies. |
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” section in the Recipients
Permissions topic.
- The following are required for sharing policies between
federated Exchange organizations:
- An Exchange 2013 Client Access server exists in each Exchange
organization. Sharing policies are also supported between Exchange
organizations where one organization has Exchange 2013 Client
Access servers and the other one organization has Exchange 2010 SP2
or later Client Access servers.
- Each Exchange organization has created a federation trust with
the Microsoft Federation Gateway. For details, see Configure a Federation
Trust.
- Each Exchange organization has configured a federated
organization identifier. Domains used for generating users' e-mail
addresses have been added to the organization identifiers.
- User mailboxes are located on Exchange 2013 Mailbox servers or
Exchange 2010 Mailbox servers in each Exchange organization.
- Only Outlook 2010 or later and Outlook Web App users can create
sharing invitations.
- An Exchange 2013 Client Access server exists in each Exchange
organization. Sharing policies are also supported between Exchange
organizations where one organization has Exchange 2013 Client
Access servers and the other one organization has Exchange 2010 SP2
or later Client Access servers.
- The following are required for sharing policies with
non-federated Exchange organizations or individuals:
- An Exchange 2013 Client Access server exists in the Exchange
organization that's sharing user's calendar information.
- User mailboxes are located on Exchange 2013 Mailbox servers in
the Exchange organization that's sharing user's calendar
information.
- The Exchange 2013 Client Access server must be enabled for
Outlook Web App access.
- An Exchange 2013 Client Access server exists in the Exchange
organization that's sharing user's calendar information.
- 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 create a sharing policy
- Navigate to Organization> Sharing.
- In the list view, under Individual Sharing, click
New .
- In Sharing Policy, type a friendly name for the sharing
policy in the Policy name box.
- Click Add
to specify the sharing rules for the sharing policy.
- In Sharing Rule, select one of the following options to
specify the domains you want to share with:
- Sharing with all domains
- Sharing with a specific domain
- Sharing with all domains
- If you select Sharing with a specific domain, type the
name of the domain you want to share with. If you need to enter
multiple domains for the sharing policy, separate the names with a
comma. For example, contoso.com, service.contoso.com.
- To define the calendar sharing levels you want to enforce for
the policy, select the Share your calendar folder check box,
and then select one of the following options:
- Calendar free/busy information with time only
- Calendar free/busy information with time, subject, and
location
- All calendar appointment information, including time,
subject, location and title
- Calendar free/busy information with time only
- To share contacts for the sharing policy, select the Share
your contacts folder check box.
- Click Save to set the rules for the sharing policy.
- If you want to make this sharing policy the default sharing
policy for users in your Exchange organization, select the Make
this policy my default sharing policy check box.
- Click Save to create the sharing policy.
Use the Shell to create a sharing policy
- This example creates the sharing policy Contoso for the
external federated domain contoso.com. This policy allows users in
the contoso.com domain to see your user's detailed calendar
availability (free/busy) information and contacts. By default, this
policy is enabled.
Copy Code New-SharingPolicy -Name "Contoso" -Domains contoso.com: CalendarSharingFreeBusyDetail, ContactsSharing
- This example creates the sharing policy ContosoWoodgrove for
two different federated domains (contoso.com and woodgrovebank.com)
with different sharing actions configured for each domain. The
policy is disabled.
Copy Code New-SharingPolicy -Name "ContosoWoodgrove" -Domains 'contoso.com: CalendarSharingFreeBusySimple', 'woodgrovebank.com: CalendarSharingFreeBusyDetail, ContactsSharing' -Enabled $false
- This example creates the sharing policy Anonymous for an
Exchange organization with the Client Access server CAS01 and the
Mailbox server MAIL01 with the sharing action configured for
limited calendar availability information. This policy allows users
in your Exchange organization to invite users with Internet access
to view their calendar availability information by sending them a
link. The policy is enabled.
- Set the Web proxy URL for MAIL01.
Copy Code Set-ExchangeServer -Identity "Mail01" -InternetWebProxy "<Webproxy URL>"
- Enable the publishing virtual directory on CAS01.
Copy Code Set-OwaVirtualDirectory -Identity "CAS01" -ExternalURL "<URL for CAS01>" -CalendarPublishingEnabled $true
- Create the sharing policy Anonymous and configure limited
calendar information sharing.
Copy Code New-SharingPolicy -Name "Anonymous" -Domains 'Anonymous: CalendarSharingFreeBusySimple' -Enabled $true
- Set the Web proxy URL for MAIL01.
For detailed syntax and parameter information, see the following topics:
How do you know this worked?
To verify that you have successfully created the sharing policy, run the following Shell command to verify the sharing policy information.
Copy Code | |
---|---|
Get-SharingPolicy <policy name> | format-list |
Tip: |
---|
Having problems? Ask for help in the Exchange forums. Visit the forums at: Exchange Server, Exchange Online, or Exchange Online Protection |