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!
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!
Hi @MichaelAdams-5874 ,
Try adding "FL" to see the details.
Get-MailboxExportRequestStatistics | FL
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.
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.
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!
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.
8 people are following this question.