Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Exchange Management Shell Commands
- #Replace MailboxName with the mailbox wou want to export
- New-MailboxExportRequest -Mailbox "MailboxName" -filePath \\SERVERNAME\SHARE\Outlook.pst
- #Request status of export and wait utill „completed“ appears.
- Get-MailboxExportRequest
- # Delete finished export jobs:
- Get-MailboxExportRequest | where {$_.status -eq "Completed"} | Remove-MailboxExportRequest
- # Press "A" Key
Add Comment
Please, Sign In to add comment