Compartir a través de


Aplicar una directiva de uso compartido a buzones

Se aplica a: Exchange Server 2013

Sharing policies are a part of federated sharing and enable user-established, people-to-people sharing of calendar information with different types of external users. The sharing policy that an admin applies to the user's mailbox determines what level of access a user can share and with whom. If you don't change anything, then the default sharing policy applies to all users. If you create a new sharing policy, you have to apply that policy to mailboxes before it takes effect. A sharing policy can be applied to a single user mailbox or to multiple user mailboxes simultaneously. An admin can also disable a user's sharing policy to prevent external access to calendars.

To learn more about federated sharing, see Compartir.

¿Qué necesita saber antes de comenzar?

Use the EAC to apply a sharing policy to a single mailbox

  1. Vaya abuzones de destinatarios>.

  2. En la vista de lista, seleccione el buzón que desee y, a continuación, haga clic en elicono Editar edición..

  3. In User Mailbox, click mailbox features.

  4. In the Sharing policy list, select the sharing policy you want to apply to this mailbox.

  5. Click save to apply the sharing policy.

Use the EAC to apply a sharing policy to multiple mailboxes

  1. Vaya abuzones de destinatarios>.

  2. In the list view, hold the Ctrl key while you select multiple mailboxes..

  3. In the details pane, the mailbox properties will be configured for bulk editing. Click More options.

  4. Under Sharing policy, click Update.

  5. In bulk assign sharing policy, use the Select the sharing policy list to select a sharing policy to assign to the mailboxes.

  6. Click save to apply the sharing policy to the selected mailboxes.

Use the Shell to apply a sharing policy to one or more mailboxes

This example applies the sharing policy Contoso to a single mailbox for the user Barbara.

Set-Mailbox -Identity Barbara -SharingPolicy "Contoso"

This example specifies that all user mailboxes in the Marketing department use the sharing policy Contoso Marketing.

Get-Mailbox -Filter "Department -eq 'Marketing'" | Set-Mailbox -SharingPolicy "Contoso Marketing"

This example returns all mailboxes that have the sharing policy Contoso applied, and it sorts the users into a table that displays only their aliases and email addresses.

Get-Mailbox -ResultSize unlimited | Where {$_.SharingPolicy -eq "Contoso" } | format-table Alias, EmailAddresses

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

¿Cómo saber si el proceso se ha completado correctamente?

To verify that you have successfully applied the sharing policy to a user mailbox, do one of the following:

  • En el EAC, vaya aBuzones dedestinatarios> y, a continuación, seleccione el buzón al que aplicó la directiva de uso compartido. Haga clic en elicono Editar edición., haga clic en Características del buzón y, a continuación, confirme que la directiva de uso compartido correcta aparece en la lista Directiva de uso compartido.

  • Run the following Shell command to verify the sharing policy was assigned to a user mailbox. Compruebe que la directiva de uso compartido correcta aparece en el parámetro SharingPolicy .

    Get-Mailbox <user name> | format-list
    

Sugerencia

¿Problemas? Solicite ayuda en los foros de Exchange. Visite los foros en Exchange Server.