Showing posts with label 2010. Show all posts
Showing posts with label 2010. Show all posts

Friday, August 26, 2016

Export Emails within a Date Range from Exchange 2010

Export Emails within a Date Range from Exchange 2010


Today I had to do this to assist with an email audit for a government agency.  Below are the steps you need to follow to make this happen.  The TechNet article leaves out a very important step that I have included for you below.


1. Open up the Exchange Management Shell and enter the following command:  New-ManagementRoleAssignment –Role “Mailbox Import Export” –User "DOMAINUSERACCOUNT"

**NOTE:  Now close the EMS and reopen it.  You have to do this because the roles for the user logged in are loaded when the EMS is started.

2. Use this command to export your email date range and the location where you want to save it: New-MailboxExportRequest -Mailbox "SAMPLE USER" -ContentFilter {(Received -lt 01/01/2012) -and (Received -gt 03/31/2012)}  -FilePath "SERVEREXPORTSSAMPLE_USER.pst"

Depending on the size of the users email you may get a file rather quickly or you may get a message from the EMC that the job is queued and will be filled when it is completed the search and export process.

What lead me here was the error "The Term New-MailboxExportRequest is not recognized as the name of a cmdlet, function, script file, or operable program".

The steps above will avoid this error and get you exactly what you need from the email box.

If you just want to dump the entire mailbox use this:  New-MailboxExportRequest -Mailbox "SAMPLE USER" -FilePath "SERVEREXPORTSSAMPLE_USER.pst"

Get

Read more »

Exchange 2010 The WS Management Service Cannot Process The Request

Exchange 2010 The WS Management Service Cannot Process The Request


PROBLEM: The WS-Management service cannot process the request. The user load quota of 1000 requests per 2 seconds has been exceeded. Send future requests at a slower rate or raise the quota for this user. The next request from this user will not be approved for at least XX milliseconds.



This can happen if a certificate on Exchange expires (SSL or UCC) and the IIS service has not been restarted since.

All you need to do is open a command prompt (Run as Administrator if using UAC) and the type in IISRESET.  Press ENTER and wait.

Now you should be able to login to the Exchange 2010 EMC with no issues.

Really simple fix.

Good luck!

Get

Read more »

Wednesday, August 3, 2016

Exchange 2010 Error A reboot from a previous installation is pending

Exchange 2010 Error A reboot from a previous installation is pending


If you are seeing this error while trying to apply an Exchange SP or RU and you have restarted heres a quick fix for it:

**MAKE SURE YOU RESTART FIRST JUST TO MAKE SURE IT IS NOT CLEARING**

Delete the  below key from the registry:
 HKLMSYSTEMCurrentControlSetControlSessionManagerPendingFileRenameOperations

After this you will be able to continue your service pack install.

Good luck.



Get

Read more »