{"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":"2025-10-07T09:31:37","modified_gmt":"2025-10-07T09:31:37","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-MailboxExportRequest Cmdlet in Exchange Server?"},"content":{"rendered":"<?xml encoding=\"utf-8\" ?><?xml encoding=\"utf-8\" ?><p>It is common for Exchange administrators to export mailboxes to PST for taking backup of mailbox data or for migrating mailboxes to another Exchange Server or Microsoft 365. To export mailboxes from Exchange database (EDB) files to PST format, they can use the New-MailboxExportRequest PowerShell cmdlet in Exchange Management Shell (EMS). However, after the export request is initiated, the command doesn&rsquo;t display any progress or status of export request. To view a detailed status of export requests initiated by the <a href=\"https:\/\/www.stellarinfo.com\/article\/new-mailbox-export-request.php\"><strong>New-MailboxExportRequest<\/strong><\/a> cmdlet, admins can use the <strong>Get-MailboxExportRequest<\/strong> cmdlet. The cmdlet helps them to find out if the export request is completed, stuck, or requires any additional actions. However, this cmdlet is available only in on-premises Exchange Server. In this article, we will see how to use the Get-MailboxExportRequest cmdlet, along with different parameters.<\/p><h2 class=\"wp-block-heading\" id=\"get-mailboxexportrequest-cmdlet-&ndash;-how-to-use-it?\"><strong>Get-MailboxExportRequest Cmdlet &ndash; How to Use it?<\/strong><\/h2><p>To use the <strong>Get-MailboxExportRequest <\/strong>cmdlet, you (admin or user) must be <a href=\"https:\/\/learn.microsoft.com\/en-us\/exchange\/permissions\/role-groups?view=exchserver-2019#add-a-role-to-a-role-group\" rel=\"nofollow\">assigned with the <strong>Mailbox Import Export<\/strong> role<\/a>.<\/p><p>You can simply run the cmdlet as given below to get a list of all the mailbox export requests.<\/p><pre class=\"wp-block-code command_container\"><code><strong>Get-MailboxExportRequest<\/strong><\/code><\/pre><p>If you want to search and view the detailed status of the export requests, run the cmdlet as given below:<\/p><pre class=\"wp-block-code command_container\"><code><strong>Get-MailboxExportRequest [[-Identity] &lt;MailboxExportRequestIdParameter&gt;] [-DomainController &lt;Fqdn&gt;] [-ResultSize &lt;Unlimited&gt;] [&lt;CommonParameters&gt;]<\/strong><\/code><\/pre><p>If you want to filter and view the desired information, then you can use various parameters with the <strong>Get-MailboxExportRequest<\/strong> cmdlet. Below are some common parameters that you can use with this cmdlet.<\/p><blockquote class=\"note_alert\">\n<p><strong><em>Note:<\/em><\/strong><em> You may not have access to all the parameters. So, check the required permissions to <a href=\"https:\/\/learn.microsoft.com\/en-us\/powershell\/exchange\/find-exchange-cmdlet-permissions?view=exchange-ps\" rel=\"nofollow\">use the cmdlet along with the parameters<\/a>.<\/em><\/p>\n<\/blockquote><h3 class=\"wp-block-heading\"><strong>&ndash;Identity Parameter<\/strong><\/h3><p>This parameter is used to get the status of ongoing export request that belongs to a particular identity. This identity is created by the user while creating the export request. Here&rsquo;s how to run the cmdlet with the <strong>&ndash;Identity <\/strong>parameter.<\/p><pre class=\"wp-block-code command_container\"><code><strong>Get-MailboxExportRequest -Identity &ldquo;John\\EDBtoPST<\/strong><\/code><\/pre><p>The above cmdlet will return the status of ongoing export request with the identity john\\EDBtoPST. However, you can&rsquo;t use this parameter with other parameters, such as -BatchName, -Mailbox, -Name, -Status, -Suspend, and -HighPriority.<\/p><h3 class=\"wp-block-heading\"><strong>&ndash;Mailbox Parameter<\/strong><\/h3><p>This parameter is used to filter the results based on the source mailbox, i.e., the mailbox from where data is being exported to PST. Here&rsquo;s an example:<\/p><pre class=\"wp-block-code command_container\"><code><strong>Get-MailboxExportRequest -Mailbox MailboxIdentityName<\/strong><\/code><\/pre><p>This parameter cannot be used with the <strong>&ndash;Identity <\/strong>parameter.<\/p><h3 class=\"wp-block-heading\"><strong>Format-List Parameter<\/strong><\/h3><p>By default, the Get-MailboxExportRequest provides the name, mailbox, source, and status of the export requests. However, you can use the Format-List parameter to get limited and required details in a formatted table list. For instance,<\/p><pre class=\"wp-block-code command_container\"><code><strong>Get-MailboxExportRequest -Mailbox MailBoxIdentityName | Format-List Name,FilePath,Mailbox,Status<\/strong><\/code><\/pre><p>The above cmdlet will display the status of all mailbox export requests that are in progress, completed, or suspended in a table format.<\/p><h3 class=\"wp-block-heading\"><strong>&ndash;BatchName Parameter<\/strong><\/h3><p>This parameter is used to get the status of a batch export request initiated by using the New-MailboxExportRequest cmdlet. Here&rsquo;s an example:<\/p><pre class=\"wp-block-code command_container\"><code><strong>Get-MailboxExportRequest -BatchName \"My_Report\" -Status Completed<\/strong><\/code><\/pre><p>The above cmdlet will return the status of completed PST export requests in the My_Report batch.&nbsp;&nbsp;<\/p><h3 class=\"wp-block-heading\"><strong>&ndash;Status Parameter<\/strong><\/h3><p>This parameter is used to get the progress status of export requests for mailboxes or archives that are exported from a particular Exchange database file. For instance,<\/p><pre class=\"wp-block-code command_container\"><code><strong>Get-MailboxExportRequest -Status InProgress -Database EDB01<\/strong><\/code><\/pre><p>The above cmdlet will return the status of export requests for mailboxes, exported to PST from Exchange database named &ndash; EDB01. You can also change the -Status parameter with the following options to filter and view export requests.<\/p><ul class=\"wp-block-list\">\n<li>AutoSuspended<\/li>\n\n\n\n<li>Completed<\/li>\n\n\n\n<li>CompletedWithWarning<\/li>\n\n\n\n<li>CompletionInProgress<\/li>\n\n\n\n<li>Failed<\/li>\n\n\n\n<li>InProgress<\/li>\n\n\n\n<li>Queued<\/li>\n\n\n\n<li>Retrying<\/li>\n\n\n\n<li>Suspended<\/li>\n\n\n\n<li>Synced<\/li>\n<\/ul><blockquote class=\"note_alert\">\n<p><strong><em>Note:<\/em><\/strong><em> This parameter cannot be used with the <strong>&ndash;Identity <\/strong>parameter.<\/em><\/p>\n<\/blockquote><h2 class=\"wp-block-heading\" id=\"what-if-the-mailbox-export-request-is-stuck?\"><strong>What if the Mailbox Export Request is Stuck?<\/strong><\/h2><p>If the <strong>Get-MailboxExportRequest<\/strong> cmdlet shows the status of export request as stuck, suspended, or incomplete, you can<a href=\"https:\/\/www.stellarinfo.com\/blog\/use-set-mailboxexportrequest-exchange-cmdlet\/\"> use the Set-MailboxExportRequest cmdlet<\/a> to modify the export request with some exceptions and complete it. If the export requests are still stuck or fail to export the mailbox data to PST file, then you can use an <a href=\"https:\/\/www.stellarinfo.com\/edb-to-pst-converter.php\">EDB to PST converter software<\/a>, such as Stellar Converter for EDB to export the mailboxes from EDB file to PST.<\/p><p>By using this software, you can export all the mailbox items, such as emails, contacts, attachments, notes, etc. from Exchange EDB file to PST. Unlike EMS, the software is GUI-based and displays the export progress. Thus, you don&rsquo;t need to use the Get-MailboxExportRequest cmdlet. Besides PST, you can also save the mailbox data to EML, MSG, RTF, PDF, and HTML formats. It also can export the mailbox data directly to live Exchange Server or Office 365. The software supports all Exchange Server versions, including 2019, 2016, 2013, 2010, 2007, 2003, 2000, and 5.5.<\/p><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"925\" height=\"557\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Why-use-stellar-converter-for-EDB.png\" alt=\"Why use stellar converter for EDB\" class=\"wp-image-175520 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Why-use-stellar-converter-for-EDB.png 925w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Why-use-stellar-converter-for-EDB-300x181.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Why-use-stellar-converter-for-EDB-768x462.png 768w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2020\/07\/Why-use-stellar-converter-for-EDB-150x90.png 150w\" sizes=\"auto, (max-width: 925px) 100vw, 925px\" \/><\/figure><h2 class=\"wp-block-heading\" id=\"conclusion\"><strong>Conclusion<\/strong><\/h2><p>To view the progress and detailed status of export requests created by using the New-MailboxExportRequest cmdlet, you can use the Get-MailboxExportRequest cmdlet. Above, we have explained in detail how to use Get-MailboxExportRequest cmdlet, along with different parameters. The <strong>Get-MailboxExportRequest<\/strong> cmdlet displays the status of export requests as suspended, stuck, or incomplete. In case the export requests are stuck or the New-MailboxExportRequest cmdlet fails to export the mailboxes, you can also use <strong>Stellar Converter for EDB<\/strong>. It is a GUI-based EDB to PST converter software that can export mailboxes and other data from EDB file to PST and various other formats in just a few simple steps.<\/p><p><a id=\"_msocom_1\"><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>It is common for Exchange administrators to export mailboxes to PST for&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-MailboxExportRequest 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 v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Get-MailboxExportRequest Cmdlet \u2013 How to Use it?<\/title>\n<meta name=\"description\" content=\"Learn to use the Get-MailboxExportRequest cmdlet in MS Exchange via EMS to view detailed status of ongoing mailbox export requests\" \/>\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=\"Get-MailboxExportRequest Cmdlet \u2013 How to Use it?\" \/>\n<meta property=\"og:description\" content=\"Learn to use the Get-MailboxExportRequest cmdlet in MS Exchange via EMS to view detailed status of ongoing mailbox export requests\" \/>\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=\"2025-10-07T09:31:37+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=\"4 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-MailboxExportRequest Cmdlet in Exchange Server?\",\"datePublished\":\"2020-07-27T06:22:36+00:00\",\"dateModified\":\"2025-10-07T09:31:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxexportrequest-cmdlet-exchange\/\"},\"wordCount\":843,\"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\":\"Get-MailboxExportRequest Cmdlet \u2013 How to Use it?\",\"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\":\"2025-10-07T09:31:37+00:00\",\"author\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/6e25a24438bdade7cc6a17f8af4fe18e\"},\"description\":\"Learn to use the Get-MailboxExportRequest cmdlet in MS Exchange via EMS to view detailed status of ongoing mailbox export requests\",\"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-MailboxExportRequest 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:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/image\/\",\"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":"Get-MailboxExportRequest Cmdlet \u2013 How to Use it?","description":"Learn to use the Get-MailboxExportRequest cmdlet in MS Exchange via EMS to view detailed status of ongoing mailbox export requests","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":"Get-MailboxExportRequest Cmdlet \u2013 How to Use it?","og_description":"Learn to use the Get-MailboxExportRequest cmdlet in MS Exchange via EMS to view detailed status of ongoing mailbox export requests","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":"2025-10-07T09:31:37+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":"4 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-MailboxExportRequest Cmdlet in Exchange Server?","datePublished":"2020-07-27T06:22:36+00:00","dateModified":"2025-10-07T09:31:37+00:00","mainEntityOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxexportrequest-cmdlet-exchange\/"},"wordCount":843,"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":"Get-MailboxExportRequest Cmdlet \u2013 How to Use it?","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":"2025-10-07T09:31:37+00:00","author":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/6e25a24438bdade7cc6a17f8af4fe18e"},"description":"Learn to use the Get-MailboxExportRequest cmdlet in MS Exchange via EMS to view detailed status of ongoing mailbox export requests","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-MailboxExportRequest 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:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/image\/","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":19,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/61711\/revisions"}],"predecessor-version":[{"id":185978,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/61711\/revisions\/185978"}],"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}]}}