question

MichaelAdams-5874 avatar image
0 Votes"
MichaelAdams-5874 asked MichaelAdams-5874 edited

Where is the Log of Exchange Server 2019 PST Exports?

Where is the log that tells me the file path a PST file of an account was exported to and at what time? I tried running Powershell get-mailboxExpoortRequestStatistics but it only says it was exported 100%.

Thanks!

office-exchange-server-administrationoffice-exchange-server-itpro
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

1 Answer

ZhengqiLou-MSFT avatar image
0 Votes"
ZhengqiLou-MSFT answered MichaelAdams-5874 edited

Hi @MichaelAdams-5874 ,

Try adding "FL" to see the details.

 Get-MailboxExportRequestStatistics | FL

For more: https://docs.microsoft.com/en-us/powershell/module/exchange/get-mailboxexportrequeststatistics?view=exchange-ps

Best regards,
Lou


If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

· 4
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

Hi @MichaelAdams-5874 ,

Do the suggestions above help? If the issue has been resolved, please click “Accept as answer” to mark the helpful reply as an answer, this will make answer searching in the forum easier and be beneficial to other community members as well.

If you are still stuck in this issue, please feel free to post your questions.

Regards,
Lou


If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

0 Votes 0 ·

Hi,

This is a great command, and gives detailed info for one user at a time. How would I see a list for all users at once?

thanks!

0 Votes 0 ·

Hi @MichaelAdams-5874 ,

Then you can conbine this with other cmdlets:

 Get-MailboxExportRequest |  Get-MailboxExportRequestStatistics | FL 

That may gives us so many information, then we could consider export the result to a file:

 Get-MailboxExportRequest |  Get-MailboxExportRequestStatistics | FL > C:\123.txt

If you want to select a/some specific attributes, use:

 Get-MailboxExportRequest |  Get-MailboxExportRequestStatistics | FT Attribute1,Attribute2,.....

Suppose it will be like:

 Get-MailboxExportRequest |  Get-MailboxExportRequestStatistics | FT Name, *Path*

Best regards,
Lou


If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

0 Votes 0 ·
Show more comments