Saturday , April 20 2024
Home - Tag Archives: Exchange2010 (page 2)

Tag Archives: Exchange2010

Exchange 2010 Add Mailbox folder permissions including subfolders

I’m always asked how to add a user to have Mailbox folder permissions for a folder and sub-folder in another users mailbox.  Exchange 2010 (SP1 for Set)  includes to new commands ‘Add-MailboxFolderPermission’ and ‘Set-MailboxFolderPermission’. Save the following in a new .ps1 file and run with Exchange management rights making changes to the script as required. ForEach($folder in (Get-MailboxFolderStatistics MailAliasofSharer| Where { …

Read More »

Checking Exchange 2010 Whitespace in EDB file

Exchange 2010 appears to have new command to allow the checking of free space within EDB file (whitespace). This can be checked with the following Exchange 2010 powershell command: Get-MailboxDatabase mbx* -status | fl name, databasesize, availablenewmailboxspace An example of command results: Name : MBX1 DatabaseSize : 218.6 GB (234,757,357,568 bytes) AvailableNewMailboxSpace : 63.58 GB (68,263,870,464 bytes)

Read More »