Tagged: mailbox

0

Error when trying to remove a Mailbox Database on Exchange Server

When you try to delete a mailbox, you may get this error:

This is because the mailbox database still contains data, that need to be moved, before you can deleted it. If you...

0

Get mailbox sizes and export them to CSV/Excel

if you want to export all you mailboxes sizes to CSV/Excel, you can run this command in you powershell:

0

Microsoft Exchange 2010 – Ahsay restore to recovery mailbox database / storage group.

Ahsay have no support for native restore to Exchange recovery group, but here is a workaround of that problems. First create a recovery storagegroup New-MailboxDatabase -Recovery -Name RDB1 -Server exch2010 -EdbFilePath “F:\Backup\Restore\Data\rdb1.edb” -LogFolderPath “F:\Backup\Restore\Log”...

0

Powershell – Show witch users have access to mailboxes

$file =  “C:\ita\fulladgang.txt” $AllUsers = get-mailbox  | select SamAccountName, name, alias $AllUsers | Foreach { echo “” echo “” echo “” echo $_.name get-mailboxfolderpermission -identity $Mailbox } | out-File $File