Exchange Server 2007 üzerinde tüm mailbox’lara hak verme veya geri alma işlemi için aşağıdaki adımları uygulayabilirsiniz.
Tüm mailbox’lara hak verme
Get-Mailbox -ResultSize unlimited | Add-MailboxPermission -User "kullanıcı Adı"-AccessRights "FullAccess" -InheritanceType all
Geri almak için,
Get-Mailbox -ResultSize unlimited | Remove-MailboxPermission -User "Kullanıcı Adı" -AccessRights "FullAccess" -InheritanceType all
Buradaki “FullAccess"
çeşitli komninasyonlarla değiştirilebilir. Mesela “Send As"
yada “Receive As"
gibi yetkilerle değiştirilebilir.
To use the Exchange Management Shell to grant the Full Access permission for a mailbox
Run the following command to add the Full Access permission directly to the mailbox.
Add-MailboxPermission "Mailbox" -User "Trusted User" -AccessRights FullAccess
To use the Exchange Management Shell to grant the Receive As permission for a mailbox database
Run the following command to add the Receive As permission to the mailbox database.
Add-ADPermission -Identity "Mailbox Store" -User "Trusted User" -ExtendedRights Receive-As