{"id":61711,"date":"2020-07-27T06:22:36","date_gmt":"2020-07-27T06:22:36","guid":{"rendered":"https:\/\/www.stellarinfo.com\/blog\/?p=61711"},"modified":"2026-07-30T05:10:54","modified_gmt":"2026-07-30T05:10:54","slug":"use-get-mailboxexportrequest-cmdlet-exchange","status":"publish","type":"post","link":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxexportrequest-cmdlet-exchange\/","title":{"rendered":"How to Use Get-MailboxExportReqServeruest Cmdlet in Exchange Server?"},"content":{"rendered":"<?xml encoding=\"utf-8\" ?><?xml encoding=\"utf-8\" ?><p class=\"wp-block-paragraph\">When you export Exchange mailboxes to PST format, you use the New-MailboxExportRequest cmdlet. But this command doesn&rsquo;t display any progress or status of export requests. To view the status, you need to use the Get-MailboxExportRequest cmdlet. The command will return the status as Queued, InProgress, Completed, or Failed. This will help you identify the stuck exports and get request identities needed for other cmdlets.<\/p><p class=\"wp-block-paragraph\">For a detailed progress metrics (percentage complete, bytes transferred, error codes), you can use the Get-MailboxExportRequestStatistics cmdlet. &nbsp;<\/p><h2 class=\"wp-block-heading\" id=\"what-is-get-mailboxexportrequest?\">What is Get-MailboxExportRequest?<\/h2><p class=\"wp-block-paragraph\">The Get-MailboxExportRequest cmdlet, as the name implies, reads and displays the status of user mailbox, user archive and shared mailbox export request records which are stored in Exchange&rsquo;s internal database. The command is used after you run the command <a href=\"https:\/\/www.stellarinfo.com\/article\/new-mailbox-export-request.php\">New-MailboxExportRequest<\/a> to check if exports are queued, running, completed, or failed. These statuses appear next to the export request.<\/p><p class=\"wp-block-paragraph\">You should note that it does not create, resume, or remove any exports from the list. The command is only for display and status purposes. If you want to resume a stopped export, use Resume-MailboxExportRequest. To create, use New-MailboxExportRequest and to remove a request, use Remove-MailboxExportRequest.<\/p><p class=\"wp-block-paragraph\">The command is available in Exchange Server 2010 SP1 and later. It cannot be used in Exchange Online\/Microsoft 365.<\/p><p class=\"wp-block-paragraph\">If the Get-MailboxExportRequest command returns no output, the most common reason is that the Mailbox Import Export role has not been assigned or there were no exports executed. You should first assign it using the below command.<\/p><pre class=\"wp-block-code command_container\"><code>New-ManagementRoleAssignment -Role 'Mailbox Import Export' -SecurityGroup '&lt;security group name&gt;'<\/code><\/pre><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"831\" height=\"104\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/New-ManagementRoleAssignment.png\" alt=\"\" class=\"wp-image-196067 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/New-ManagementRoleAssignment.png 831w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/New-ManagementRoleAssignment-300x38.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/New-ManagementRoleAssignment-768x96.png 768w\" sizes=\"auto, (max-width: 831px) 100vw, 831px\" \/><\/figure><h2 class=\"wp-block-heading\" id=\"syntax-and-basic-usage\">Syntax and Basic Usage<\/h2><p class=\"wp-block-paragraph\">The command can be used on its own in the Exchange Management Shell (EMS).<\/p><pre class=\"wp-block-code command_container\"><code>Get-MailboxExportRequest<\/code><\/pre><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"477\" height=\"156\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Get-MailboxExportRequest.png\" alt=\"\" class=\"wp-image-196068 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Get-MailboxExportRequest.png 477w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Get-MailboxExportRequest-300x98.png 300w\" sizes=\"auto, (max-width: 477px) 100vw, 477px\" \/><\/figure><p class=\"wp-block-paragraph\">The command&rsquo;s full parameters are:<\/p><pre class=\"wp-block-code command_container\"><code>Get-MailboxExportRequest [[-Identity] &lt;MailboxExportRequestIdParameter&gt;] [-BatchName &lt;String&gt;] [-Database &lt;DatabaseIdParameter&gt;] [-Mailbox &lt;MailboxOrMailUserIdParameter&gt;] [-Status &lt;RequestStatus&gt;] [-ResultSize &lt;Unlimited&gt;]<\/code><\/pre><p class=\"wp-block-paragraph\"><em>For full parameter reference, see: <\/em><a href=\"https:\/\/learn.microsoft.com\/en-us\/powershell\/module\/exchange\/get-mailboxexportrequest?view=exchange-ps\"><em>Get-MailboxExportRequest &mdash; Microsoft Learn<\/em><\/a><em>.<\/em><em><\/em><\/p><p class=\"wp-block-paragraph\">Let&rsquo;s know a bit about the common parameters used with the command.<\/p><p class=\"wp-block-paragraph\">To get all current export requests on the server, use it without parameters.<\/p><p class=\"wp-block-paragraph\">To get the status of a specific export request, run the command as given below.<\/p><pre class=\"wp-block-code command_container\"><code>Get-MailboxExportRequest -Identity '&lt;user&gt;\\MailboxExport'<\/code><\/pre><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"531\" height=\"124\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Get-MailboxExportRequest-Identity.png\" alt=\"\" class=\"wp-image-196069 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Get-MailboxExportRequest-Identity.png 531w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Get-MailboxExportRequest-Identity-300x70.png 300w\" sizes=\"auto, (max-width: 531px) 100vw, 531px\" \/><\/figure><p class=\"wp-block-paragraph\">If you want to list all the details of the export, you can use the pipe to Format-List (FL) to expand all properties. This will list parameters such as Batch Name, the file path, database, and other details.<\/p><pre class=\"wp-block-code command_container\"><code>Get-MailboxExportRequest | fl<\/code><\/pre><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"586\" height=\"421\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Get-MailboxExportRequest-fl.png\" alt=\"\" class=\"wp-image-196070 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Get-MailboxExportRequest-fl.png 586w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Get-MailboxExportRequest-fl-300x216.png 300w\" sizes=\"auto, (max-width: 586px) 100vw, 586px\" \/><\/figure><h2 class=\"wp-block-heading\" id=\"parameters-reference\">Parameters Reference<\/h2><p class=\"wp-block-paragraph\">The following table covers all the commonly used parameters for Get-MailboxExportRequest, along with an example.<\/p><figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>Parameter<\/td><td>Type<\/td><td>Purpose<\/td><td>Example<\/td><\/tr><tr><td>-Identity<\/td><td>String<\/td><td>Filter by a specific export request identity (mailbox\\requestname)<\/td><td>Get-MailboxExportRequest -Identity &lsquo;John\\MailboxExport&rsquo;<\/td><\/tr><tr><td>-BatchName<\/td><td>String<\/td><td>Filter requests by batch name assigned during New-MailboxExportRequest<\/td><td>Get-MailboxExportRequest -BatchName &lsquo;Batch_Jan2026&rsquo;<\/td><\/tr><tr><td>-Database<\/td><td>String<\/td><td>Filter requests by source Exchange database. Cannot be used with -Identity.<\/td><td>Get-MailboxExportRequest -Database &lsquo;DB01&rsquo;<\/td><\/tr><tr><td>-Status<\/td><td>Enum<\/td><td>Filter by request status. Cannot be used with -Identity.<\/td><td>Get-MailboxExportRequest -Status Failed<\/td><\/tr><tr><td>-Mailbox<\/td><td>String<\/td><td>Filter by mailbox identifier (alias, email, or GUID)<\/td><td>Get-MailboxExportRequest -Mailbox &lsquo;john.doe&rsquo;<\/td><\/tr><tr><td>-ResultSize<\/td><td>Integer or Unlimited<\/td><td>Limit number of results returned. Default is 1,000.<\/td><td>Get-MailboxExportRequest -ResultSize Unlimited<\/td><\/tr><tr><td>-RequestQueue<\/td><td>String<\/td><td>Filter export requests by the mailbox database that is hosting the export request queue<\/td><td>Get-MailboxExportRequest -RequestQueue DB01<\/td><\/tr><tr><td>-HighPriority<\/td><td>Switch<\/td><td>Return only high priority export requests<\/td><td>Get-MailboxExportRequest -HighPriority<\/td><\/tr><\/tbody><\/table><\/figure><h2 class=\"wp-block-heading\" id=\"status-values-explained\">Status Values Explained<\/h2><p class=\"wp-block-paragraph\">The table below explains each status value, meaning of the status, and the action that can be taken to resolve the issue.<\/p><figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>Status Value<\/td><td>Meaning<\/td><td>What to do Next<\/td><\/tr><tr><td>Queued<\/td><td>Request created and waiting for the Mailbox Replication Service (MRS) to pick it up<\/td><td>Wait for MRS to start processing. If stuck for over 30 minutes, check by using: Get-Service MSExchangeMailboxReplication<\/td><\/tr><tr><td>InProgress<\/td><td>Export is actively running &mdash; data is being written to the PST file<\/td><td>Monitor progress with Get-MailboxExportRequestStatistics. Do not delete the PST file<\/td><\/tr><tr><td>Completed<\/td><td>Export finished successfully. All data has been written to the PST file<\/td><td>Verify PST file size. Clean up request with Remove-MailboxExportRequest<\/td><\/tr><tr><td>CompletedWithWarning<\/td><td>Export finished but some items were skipped (bad items exceeded threshold)<\/td><td>Run Get-MailboxExportRequestStatistics for BadItemLimit and BadItemsEncountered. Review skipped items<\/td><\/tr><tr><td>Failed<\/td><td>Export stopped due to an error. PST file may be incomplete<\/td><td>Run Get-MailboxExportRequestStatistics | fl FailureCode,Message to diagnose<\/td><\/tr><tr><td>Suspended<\/td><td>Export was manually suspended or auto-suspended by MRS<\/td><td>Resume with Resume-MailboxExportRequest -Identity &lt;identity&gt; if needed<\/td><\/tr><tr><td>AutoSuspended<\/td><td>MRS suspended the request automatically due to resource constraints<\/td><td>Wait for MRS to resume automatically or resume manually<\/td><\/tr><tr><td>Stalled<\/td><td>Export is waiting on a resource (usually disk I\/O or network)<\/td><td>Check source disk health. See: <a href=\"https:\/\/learn.microsoft.com\/en-us\/troubleshoot\/exchange\/migration\/mailboxes-stalled-during-migration\">Exchange Mailbox Export Stalled<\/a> &nbsp;<\/td><\/tr><\/tbody><\/table><\/figure><p class=\"wp-block-paragraph\">When an export&rsquo;s status shows CompletedWithWarning, it does not mean the export has failed. The PST file was created but some items were skipped due to corruption or bad item limits. You should always check BadItemCount in Get-MailboxExportRequestStatistics with the FL parameter after a CompletedWithWarning result in the export.<\/p><pre class=\"wp-block-code command_container\"><code>Get-MailboxExportRequestStatistics -Identity &lt;user&gt; | FL<\/code><\/pre><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"538\" height=\"67\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Get-MailboxExportRequestStatistics.png\" alt=\"\" class=\"wp-image-196071 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Get-MailboxExportRequestStatistics.png 538w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Get-MailboxExportRequestStatistics-300x37.png 300w\" sizes=\"auto, (max-width: 538px) 100vw, 538px\" \/><\/figure><p class=\"wp-block-paragraph\">This will return all the information related to the export. You should look for <strong>BadItemFilter<\/strong>, <strong>BadItemsEncountered<\/strong>, <strong>LargeItemLimit<\/strong>, and <strong>LargeItemsEncountered<\/strong>.<\/p><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"386\" height=\"96\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/BadItemsEncountered.png\" alt=\"\" class=\"wp-image-196072 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/BadItemsEncountered.png 386w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/BadItemsEncountered-300x75.png 300w\" sizes=\"auto, (max-width: 386px) 100vw, 386px\" \/><\/figure><h2 class=\"wp-block-heading\" id=\"common-monitoring-scenarios\">Common Monitoring Scenarios<\/h2><p class=\"wp-block-paragraph\">The following table covers the most common scenarios where you can use the Get-MailboxExportRequest cmdlet.<\/p><figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>Scenario<\/td><td>Command<\/td><td>When to Use<\/td><\/tr><tr><td>Check all requests<\/td><td>Get-MailboxExportRequest<\/td><td>Get an overview of all export requests on the server<\/td><\/tr><tr><td>Check one request<\/td><td>Get-MailboxExportRequest -Identity &lsquo;John\\MailboxExport&rsquo;<\/td><td>Monitor a specific export request<\/td><\/tr><tr><td>Find all failed requests<\/td><td>Get-MailboxExportRequest -Status Failed<\/td><td>Identify failed exports for troubleshooting<\/td><\/tr><tr><td>Find stuck\/queued requests<\/td><td>Get-MailboxExportRequest -Status Queued<\/td><td>Find exports that haven&rsquo;t started processing<\/td><\/tr><tr><td>Find auto-suspended requests<\/td><td>Get-MailboxExportRequest -Status AutoSuspended<\/td><td>Check if MRS resources are constrained before resuming<\/td><\/tr><tr><td>Check by batch<\/td><td>Get-MailboxExportRequest -BatchName &lsquo;Batch_Jan2026&rsquo;<\/td><td>Monitor all exports in a named batch<\/td><\/tr><tr><td>Check by database<\/td><td>Get-MailboxExportRequest -Database &lsquo;DB01&rsquo;<\/td><td>See all exports from a specific database<\/td><\/tr><tr><td>Get progress details<\/td><td>Get-MailboxExportRequestStatistics -Identity &lsquo;John\\MailboxExport&rsquo; | fl PercentComplete,Status,Message<\/td><td>Detailed progress and error information<\/td><\/tr><tr><td>Get all stats<\/td><td>Get-MailboxExportRequest -ResultSize &lt;number&gt;| Get-MailboxExportRequestStatistics | fl DisplayName,Status,PercentComplete,FailureCode<\/td><td>Full progress report of all requests. You should add the ResultSize to limit the scope of results where large number of requests can cause timeouts on the server<\/td><\/tr><tr><td>Remove after checking<\/td><td>Get-MailboxExportRequest -Status Completed | <a href=\"https:\/\/www.stellarinfo.com\/blog\/use-remove-mailboxexportrequest-cmdlet-exchange\/\">Remove-MailboxExportRequest<\/a><\/td><td>Pipeline: Check completed and then remove in one step<\/td><\/tr><\/tbody><\/table><\/figure><h2 class=\"wp-block-heading\" id=\"use-get-mailboxexportrequeststatistics-for-detailed-progress\">Use Get-MailboxExportRequestStatistics for Detailed Progress<\/h2><p class=\"wp-block-paragraph\">For further investigation, you can use the Get-MailboxExportRequestStatistics command, which will provide full details of the export. Let&rsquo;s explore the command and its uses.<\/p><p class=\"wp-block-paragraph\">Basic statistics for a single request with basic details.<\/p><pre class=\"wp-block-code command_container\"><code>Get-MailboxExportRequestStatistics -Identity '&lt;user&gt;\\MailboxExport'<\/code><\/pre><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"622\" height=\"130\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Use-Get-MailboxExportRequestStatistics-for-Detailed-Progress.png\" alt=\"\" class=\"wp-image-196073 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Use-Get-MailboxExportRequestStatistics-for-Detailed-Progress.png 622w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Use-Get-MailboxExportRequestStatistics-for-Detailed-Progress-300x63.png 300w\" sizes=\"auto, (max-width: 622px) 100vw, 622px\" \/><\/figure><p class=\"wp-block-paragraph\">These are the key fields to check during an active export.<\/p><pre class=\"wp-block-code command_container\"><code>Get-MailboxExportRequestStatistics -Identity '&lt;user&gt;\\MailboxExport' | fl PercentComplete,Status,BytesTransferred,ItemsTransferred,BadItemCount,Message<\/code><\/pre><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"987\" height=\"183\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/These-are-the-key-fields-to-check-during-an-active-export.png\" alt=\"\" class=\"wp-image-196074 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/These-are-the-key-fields-to-check-during-an-active-export.png 987w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/These-are-the-key-fields-to-check-during-an-active-export-300x56.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/These-are-the-key-fields-to-check-during-an-active-export-768x142.png 768w\" sizes=\"auto, (max-width: 987px) 100vw, 987px\" \/><\/figure><p class=\"wp-block-paragraph\">Get the statistics for all the requests in one command.<\/p><pre class=\"wp-block-code command_container\"><code>Get-MailboxExportRequest | Get-MailboxExportRequestStatistics | Select SourceMailboxIdentity,Status,PercentComplete,BytesTransferred | Format-Table<\/code><\/pre><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"986\" height=\"183\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Get-the-statistics-for-all-the-requests-in-one-command.png\" alt=\"\" class=\"wp-image-196075 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Get-the-statistics-for-all-the-requests-in-one-command.png 986w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Get-the-statistics-for-all-the-requests-in-one-command-300x56.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Get-the-statistics-for-all-the-requests-in-one-command-768x143.png 768w\" sizes=\"auto, (max-width: 986px) 100vw, 986px\" \/><\/figure><p class=\"wp-block-paragraph\">Find failure reason for a failed request for a specified user export.<\/p><pre class=\"wp-block-code command_container\"><code>Get-MailboxExportRequestStatistics -Identity '&lt;user&gt;\\MailboxExport' | fl FailureCode,FailureSide,Message,BadItemCount<\/code><\/pre><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"994\" height=\"158\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Find-failure-reason-for-a-failed-request-for-a-specified-user-export.png\" alt=\"\" class=\"wp-image-196076 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Find-failure-reason-for-a-failed-request-for-a-specified-user-export.png 994w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Find-failure-reason-for-a-failed-request-for-a-specified-user-export-300x48.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Find-failure-reason-for-a-failed-request-for-a-specified-user-export-768x122.png 768w\" sizes=\"auto, (max-width: 994px) 100vw, 994px\" \/><\/figure><p class=\"wp-block-paragraph\">For full parameter reference, read: <a href=\"https:\/\/learn.microsoft.com\/en-us\/powershell\/module\/exchange\/get-mailboxexportrequeststatistics?view=exchange-ps\">Get-MailboxExportRequestStatistics &mdash; Microsoft Learn<\/a>.<\/p><h2 class=\"wp-block-heading\" id=\"bulk-monitoring-and-pipeline-examples\">Bulk Monitoring and Pipeline Examples<\/h2><p class=\"wp-block-paragraph\">The combination of different commands with pipelines are useful when managing large number of export requests to get a better scenario of the exports and for automating the exports reporting.<\/p><p class=\"wp-block-paragraph\">Generate a full status report for all requests in a CSV file.<\/p><pre class=\"wp-block-code command_container\"><code>Get-MailboxExportRequest | Get-MailboxExportRequestStatistics | Select DisplayName,Status,PercentComplete,BytesTransferred,BadItemCount,FailureCode | Export-Csv -Path C:\\Reports\\ExportStatus.csv -NoTypeInformation<\/code><\/pre><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"986\" height=\"102\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Generate-a-full-status-report-for-all-requests-in-a-CSV-file.png\" alt=\"\" class=\"wp-image-196077 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Generate-a-full-status-report-for-all-requests-in-a-CSV-file.png 986w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Generate-a-full-status-report-for-all-requests-in-a-CSV-file-300x31.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Generate-a-full-status-report-for-all-requests-in-a-CSV-file-768x79.png 768w\" sizes=\"auto, (max-width: 986px) 100vw, 986px\" \/><\/figure><p class=\"wp-block-paragraph\">This below command will find and resume all suspended requests. If it returns no results, this means that there are no suspended mailbox exports.<\/p><pre class=\"wp-block-code command_container\"><code>Get-MailboxExportRequest -Status Suspended | Resume-MailboxExportRequest<\/code><\/pre><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"666\" height=\"87\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/This-below-command-will-find-and-resume-all-suspended-requests.png\" alt=\"\" class=\"wp-image-196078 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/This-below-command-will-find-and-resume-all-suspended-requests.png 666w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/This-below-command-will-find-and-resume-all-suspended-requests-300x39.png 300w\" sizes=\"auto, (max-width: 666px) 100vw, 666px\" \/><\/figure><p class=\"wp-block-paragraph\">For finding requests older than 7 days that are still in progress, use the below command. These exports are most probably stuck. This is a very good report you can generate as there could be other reasons why the export is stuck.<\/p><pre class=\"wp-block-code command_container\"><code>Get-MailboxExportRequest -Status InProgress | Where-Object {$_.QueuedTimestamp -lt (Get-Date).AddDays(-7)}<\/code><\/pre><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"985\" height=\"86\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/reasons-why-the-export-is-stuck.png\" alt=\"\" class=\"wp-image-196079 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/reasons-why-the-export-is-stuck.png 985w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/reasons-why-the-export-is-stuck-300x26.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/reasons-why-the-export-is-stuck-768x67.png 768w\" sizes=\"auto, (max-width: 985px) 100vw, 985px\" \/><\/figure><p class=\"wp-block-paragraph\">When the requests are completed, the Exchange Server will not clean the requests from the list. To do this, you can use the below command to remove all exports which are completed.<\/p><pre class=\"wp-block-code command_container\"><code>Get-MailboxExportRequest -Status Completed | Remove-MailboxExportRequest<\/code><\/pre><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"678\" height=\"85\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/When-the-requests-are-completed-the-Exchange-Server-will-not-clean-the-requests-from-the-list.png\" alt=\"\" class=\"wp-image-196080 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/When-the-requests-are-completed-the-Exchange-Server-will-not-clean-the-requests-from-the-list.png 678w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/When-the-requests-are-completed-the-Exchange-Server-will-not-clean-the-requests-from-the-list-300x38.png 300w\" sizes=\"auto, (max-width: 678px) 100vw, 678px\" \/><\/figure><p class=\"wp-block-paragraph\"><strong>Note:<\/strong> You should always verify the PST files exist at the destination path before removing completed export requests. This is a destructive pipeline that removes all completed request records in one command. It is recommended to always run Get-MailboxExportRequest -Status Completed first to review the list and then use Remove-MailboxExportRequest only after confirming.<\/p><h2 class=\"wp-block-heading\" id=\"troubleshooting-the-failed-or-suspended-export-requests\">Troubleshooting the Failed or Suspended Export Requests<\/h2><p class=\"wp-block-paragraph\">The table below can help you in the diagnostics and troubleshooting failed or suspended exports displayed by Get-MailboxExportRequest.<\/p><figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>Status<\/td><td>Cause<\/td><td>Fix<\/td><td>Related Guide<\/td><\/tr><tr><td>Status: Queued for 30+ minutes<\/td><td>MSExchangeMailboxReplication service stopped or MRS overloaded<\/td><td>Get-Service MSExchangeMailboxReplication. If stopped: use Start-Service MSExchangeMailboxReplication<\/td><td><a href=\"https:\/\/www.stellarinfo.com\/blog\/error-solved-mailbox-export-stuck-in-queued\/\">Exchange Mailbox Export Stuck in Queued <\/a>&nbsp;<\/td><\/tr><tr><td>Status: Failed with FailureCode<\/td><td>Path denied, permissions, bad items, or source mailbox offline<\/td><td>Get-MailboxExportRequestStatistics | fl FailureCode,Message,BadItemCount. Fix per error code<\/td><td><a href=\"https:\/\/www.stellarinfo.com\/article\/new-mailboxexportrequest-failed.php\">New-MailboxExportRequest Failed <\/a>&nbsp;<\/td><\/tr><tr><td>Status: Stalled<\/td><td>Source disk I\/O bottleneck or storage exhaustion on PST destination<\/td><td>Check disk health on Exchange Server. Verify that PST destination has sufficient free space<\/td><td><a href=\"https:\/\/www.stellarinfo.com\/blog\/error-solved-mailbox-export-stalled-due-to-source-disk-latency\/\">Exchange Mailbox Export Stalled <\/a>&nbsp;<\/td><\/tr><tr><td>No results returned<\/td><td>Request was already removed, or -ResultSize limit reached<\/td><td>Check Remove-MailboxExportRequest was not run. Add -ResultSize Unlimited<\/td><td>N\/A<\/td><\/tr><tr><td>&lsquo;Access Denied&rsquo; on -Database filter<\/td><td>Account running EMS doesn&rsquo;t have Mailbox Import Export role<\/td><td>New-ManagementRoleAssignment -Role &lsquo;Mailbox Import Export&rsquo; -SecurityGroup &lsquo;Organization Management&rsquo;<\/td><td><a href=\"https:\/\/www.stellarinfo.com\/article\/mailbox-import-export-role.php\">Mailbox Import Export Role <\/a>&nbsp;<\/td><\/tr><tr><td>Export is CompletedWithWarning<\/td><td>BadItemLimit exceeded during export &mdash; some items were skipped<\/td><td>Get-MailboxExportRequestStatistics | fl BadItemCount,BadItemsEncountered. Re-run with higher BadItemLimit<\/td><td>New-MailboxExportRequest Failed &nbsp;<\/td><\/tr><\/tbody><\/table><\/figure><h2 class=\"wp-block-heading\" id=\"when-get-mailboxexportrequest-is-not-enough\">When Get-MailboxExportRequest is not Enough<\/h2><p class=\"wp-block-paragraph\">There are instances when the native method to export mailboxes and other resources from an Exchange Server would not be enough. Both the import or export commands will not be run if the server is not running or the database is not mounted. In addition, the command &ndash; Get-MailboxExportRequest &ndash; may show the Status: Failed with database-related error codes.<\/p><p class=\"wp-block-paragraph\">In such cases, you can use Stellar Converter for EDB to export the mailboxes to PST. It can open the EDB directly without needing a running export service and from an online database (without the need to unmount it). The software supports any version of Exchange Server database.<\/p><p class=\"wp-block-paragraph\">Stellar Converter for EDB does not require an RBAC role assigned unlike the commands. Even if the native export command is complete, there is a risk that the exported PST file may be corrupted or incomplete. With Stellar Converter for EDB, you can have a full HTML pre-export preview to verify data before conversion.<\/p><p class=\"wp-block-paragraph\">This software not only exports user mailboxes, user archive, or shared mailboxes but it can also export disabled mailboxes, public folders, and deleted\/purged items.<\/p><p class=\"wp-block-paragraph\">For detailed information on exporting Exchange mailboxes to PST, see the <a href=\"https:\/\/www.stellarinfo.com\/blog\/how-to-export-exmailboxes-to-pst\/\">Exchange mailbox export guide<\/a>.<\/p><h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2><p class=\"wp-block-paragraph\">When you export mailboxes to PST using the New-MailboxExportRequest cmdlet in Exchange Server, it doesn&rsquo;t show the status of the export requests. You have to use the Get-MailboxExportRequest cmdlet to know the status. This guide explains how to use this cmdlet, along with various parameters. However, to run this cmdlet, you need to have the Mailbox Import Export RBAC role, mounted database, and a working Exchange Server. &nbsp;&nbsp;&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When you export Exchange mailboxes to PST format, you use the New-MailboxExportRequest&hellip; <a class=\"more-link\" href=\"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxexportrequest-cmdlet-exchange\/\">Continue reading <span class=\"screen-reader-text\">How to Use Get-MailboxExportReqServeruest Cmdlet in Exchange Server?<\/span><\/a><\/p>\n","protected":false},"author":95,"featured_media":62390,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[823],"tags":[],"class_list":["post-61711","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-edb-to-pst-converter","entry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to use Get-MailboxExportRequest Cmdlet in Exchange<\/title>\n<meta name=\"description\" content=\"Discover how to use Get-MailboxExportRequest to monitor Exchange mailbox exports, check request status, find failures, and troubleshoot PST exports.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxexportrequest-cmdlet-exchange\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to use Get-MailboxExportRequest Cmdlet in Exchange\" \/>\n<meta property=\"og:description\" content=\"Discover how to use Get-MailboxExportRequest to monitor Exchange mailbox exports, check request status, find failures, and troubleshoot PST exports.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxexportrequest-cmdlet-exchange\/\" \/>\n<meta property=\"og:site_name\" content=\"Stellar Data Recovery Blog\" \/>\n<meta property=\"article:published_time\" content=\"2020-07-27T06:22:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-30T05:10:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/08\/How-to-Use-Get-MailboxExportRequest-Cmdlet.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Anubhuti Sinha\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Anubhuti Sinha\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/use-get-mailboxexportrequest-cmdlet-exchange\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/use-get-mailboxexportrequest-cmdlet-exchange\\\/\"},\"author\":{\"name\":\"Anubhuti Sinha\",\"@id\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/#\\\/schema\\\/person\\\/6e25a24438bdade7cc6a17f8af4fe18e\"},\"headline\":\"How to Use Get-MailboxExportReqServeruest Cmdlet in Exchange Server?\",\"datePublished\":\"2020-07-27T06:22:36+00:00\",\"dateModified\":\"2026-07-30T05:10:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/use-get-mailboxexportrequest-cmdlet-exchange\\\/\"},\"wordCount\":1705,\"image\":{\"@id\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/use-get-mailboxexportrequest-cmdlet-exchange\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/How-to-Use-Get-MailboxExportRequest-Cmdlet.jpg\",\"articleSection\":[\"EDB to PST Converter\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/use-get-mailboxexportrequest-cmdlet-exchange\\\/\",\"url\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/use-get-mailboxexportrequest-cmdlet-exchange\\\/\",\"name\":\"How to use Get-MailboxExportRequest Cmdlet in Exchange\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/use-get-mailboxexportrequest-cmdlet-exchange\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/use-get-mailboxexportrequest-cmdlet-exchange\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/How-to-Use-Get-MailboxExportRequest-Cmdlet.jpg\",\"datePublished\":\"2020-07-27T06:22:36+00:00\",\"dateModified\":\"2026-07-30T05:10:54+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/#\\\/schema\\\/person\\\/6e25a24438bdade7cc6a17f8af4fe18e\"},\"description\":\"Discover how to use Get-MailboxExportRequest to monitor Exchange mailbox exports, check request status, find failures, and troubleshoot PST exports.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/use-get-mailboxexportrequest-cmdlet-exchange\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/use-get-mailboxexportrequest-cmdlet-exchange\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/use-get-mailboxexportrequest-cmdlet-exchange\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/How-to-Use-Get-MailboxExportRequest-Cmdlet.jpg\",\"contentUrl\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/How-to-Use-Get-MailboxExportRequest-Cmdlet.jpg\",\"width\":1000,\"height\":600,\"caption\":\"How to Use Get-MailboxExportRequest Cmdlet?\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/use-get-mailboxexportrequest-cmdlet-exchange\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Use Get-MailboxExportReqServeruest Cmdlet in Exchange Server?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/\",\"name\":\"Stellar Data Recovery Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/#\\\/schema\\\/person\\\/6e25a24438bdade7cc6a17f8af4fe18e\",\"name\":\"Anubhuti Sinha\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0808a9a412ffd85db3c57b7af6e353dfc9ed9ca5021570b3b9b1d83550c1948f?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0808a9a412ffd85db3c57b7af6e353dfc9ed9ca5021570b3b9b1d83550c1948f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0808a9a412ffd85db3c57b7af6e353dfc9ed9ca5021570b3b9b1d83550c1948f?s=96&d=mm&r=g\",\"caption\":\"Anubhuti Sinha\"},\"description\":\"Anubhuti's passion for technology shines through her knowledge of Microsoft Exchange Server. She excels at managing, and troubleshooting this powerful platform. She has a bachelor\u2019s degree in technology in the field of Electronics and Communication.\",\"sameAs\":[\"https:\\\/\\\/www.stellarinfo.com\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/anubhuti-sinha-196a64189\\\/\"],\"url\":\"https:\\\/\\\/www.stellarinfo.com\\\/blog\\\/author\\\/anubhuti\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to use Get-MailboxExportRequest Cmdlet in Exchange","description":"Discover how to use Get-MailboxExportRequest to monitor Exchange mailbox exports, check request status, find failures, and troubleshoot PST exports.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxexportrequest-cmdlet-exchange\/","og_locale":"en_US","og_type":"article","og_title":"How to use Get-MailboxExportRequest Cmdlet in Exchange","og_description":"Discover how to use Get-MailboxExportRequest to monitor Exchange mailbox exports, check request status, find failures, and troubleshoot PST exports.","og_url":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxexportrequest-cmdlet-exchange\/","og_site_name":"Stellar Data Recovery Blog","article_published_time":"2020-07-27T06:22:36+00:00","article_modified_time":"2026-07-30T05:10:54+00:00","og_image":[{"width":1000,"height":600,"url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/08\/How-to-Use-Get-MailboxExportRequest-Cmdlet.jpg","type":"image\/jpeg"}],"author":"Anubhuti Sinha","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Anubhuti Sinha","Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxexportrequest-cmdlet-exchange\/#article","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxexportrequest-cmdlet-exchange\/"},"author":{"name":"Anubhuti Sinha","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/6e25a24438bdade7cc6a17f8af4fe18e"},"headline":"How to Use Get-MailboxExportReqServeruest Cmdlet in Exchange Server?","datePublished":"2020-07-27T06:22:36+00:00","dateModified":"2026-07-30T05:10:54+00:00","mainEntityOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxexportrequest-cmdlet-exchange\/"},"wordCount":1705,"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxexportrequest-cmdlet-exchange\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/08\/How-to-Use-Get-MailboxExportRequest-Cmdlet.jpg","articleSection":["EDB to PST Converter"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxexportrequest-cmdlet-exchange\/","url":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxexportrequest-cmdlet-exchange\/","name":"How to use Get-MailboxExportRequest Cmdlet in Exchange","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxexportrequest-cmdlet-exchange\/#primaryimage"},"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxexportrequest-cmdlet-exchange\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/08\/How-to-Use-Get-MailboxExportRequest-Cmdlet.jpg","datePublished":"2020-07-27T06:22:36+00:00","dateModified":"2026-07-30T05:10:54+00:00","author":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/6e25a24438bdade7cc6a17f8af4fe18e"},"description":"Discover how to use Get-MailboxExportRequest to monitor Exchange mailbox exports, check request status, find failures, and troubleshoot PST exports.","breadcrumb":{"@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxexportrequest-cmdlet-exchange\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxexportrequest-cmdlet-exchange\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxexportrequest-cmdlet-exchange\/#primaryimage","url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/08\/How-to-Use-Get-MailboxExportRequest-Cmdlet.jpg","contentUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/08\/How-to-Use-Get-MailboxExportRequest-Cmdlet.jpg","width":1000,"height":600,"caption":"How to Use Get-MailboxExportRequest Cmdlet?"},{"@type":"BreadcrumbList","@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxexportrequest-cmdlet-exchange\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.stellarinfo.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Use Get-MailboxExportReqServeruest Cmdlet in Exchange Server?"}]},{"@type":"WebSite","@id":"https:\/\/www.stellarinfo.com\/blog\/#website","url":"https:\/\/www.stellarinfo.com\/blog\/","name":"Stellar Data Recovery Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.stellarinfo.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/6e25a24438bdade7cc6a17f8af4fe18e","name":"Anubhuti Sinha","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0808a9a412ffd85db3c57b7af6e353dfc9ed9ca5021570b3b9b1d83550c1948f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0808a9a412ffd85db3c57b7af6e353dfc9ed9ca5021570b3b9b1d83550c1948f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0808a9a412ffd85db3c57b7af6e353dfc9ed9ca5021570b3b9b1d83550c1948f?s=96&d=mm&r=g","caption":"Anubhuti Sinha"},"description":"Anubhuti's passion for technology shines through her knowledge of Microsoft Exchange Server. She excels at managing, and troubleshooting this powerful platform. She has a bachelor\u2019s degree in technology in the field of Electronics and Communication.","sameAs":["https:\/\/www.stellarinfo.com\/","https:\/\/www.linkedin.com\/in\/anubhuti-sinha-196a64189\/"],"url":"https:\/\/www.stellarinfo.com\/blog\/author\/anubhuti\/"}]}},"_links":{"self":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/61711","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/users\/95"}],"replies":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/comments?post=61711"}],"version-history":[{"count":21,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/61711\/revisions"}],"predecessor-version":[{"id":196081,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/61711\/revisions\/196081"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media\/62390"}],"wp:attachment":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media?parent=61711"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/categories?post=61711"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/tags?post=61711"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}