Skip to main content

Posts

Showing posts with the label export

EXCHANGE 2010 - 1 SỐ SCRIPT HAY

Export mailbox statitics Get-MailboxDatabase "MailboxDB"| Get-MailboxStatistics | Select DisplayName, LastLoggedOnUserAccount, ItemCount, TotalItemSize, LastLogonTime, LastLogoffTime | Sort-Object TotalItemSize.Value.toMB  -Descending | Export-CSV c:\MailboxDB.csv Export mailbox statitics với dung lượng theo MB Get-MailboxDatabase "MailboxDB"| Get-MailboxStatistics | Select DisplayName, LastLoggedOnUserAccount, ItemCount, @{expression={$_.totalitemsize.value.ToMB()};label=”Size(MB)”}, LastLogonTime, LastLogoffTime | Export-CSV c:\mailboxdb.csv Kiểm tra dung lượng database Get-MailboxDatabase < Database name > -Status | Format-List Name, DatabaseSize, AvailableNewMailboxSpace Export mailbox New-MailboxExportRequest -Mailbox Anh.TV -FilePath "\\exvdc2\MB-Export\Anh.TV.pst"

Exchange - Backup mailbox ra PST

Exchange 2016, 2013, 2010 mailbox backup by export to PST (PowerShell) Posted on  December 18, 2014 by  Adam the 32-bit Aardvark [Update]: This post was updated on January 24, 2018. An email organization lives and dies by mailbox backups. Unfortunately, all Microsoft Exchange versions, including Exchange 2016, come with  limited brick-level backup capabilities . Basically, the only available granular option is an export to PST files. This can be done via Outlook (obviously), PowerShell and in some cases also via Exchange Management Console / Control Panel. In this article I discuss the options available via PowerShell in:  Exchange 2016 ,  Exchange 2013  and  Exchange 2010 . Note: To export Exchange 2007 mailboxes to PST files use the  Export-Mailbox  cmdlet. If you are using Exchange Online, consult  this article . Single mailbox export to PST file Exporting mailbox contents to a PST file is achieved using the...