{"id":129429,"date":"2023-03-31T09:25:40","date_gmt":"2023-03-31T09:25:40","guid":{"rendered":"https:\/\/www.stellarinfo.com\/blog\/?p=129429"},"modified":"2025-05-21T02:35:34","modified_gmt":"2025-05-21T02:35:34","slug":"use-get-mailboxrestorerequest-cmdlet-in-exchange-server","status":"publish","type":"post","link":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/","title":{"rendered":"How to Use Get-MailboxRestoreRequest Cmdlet?"},"content":{"rendered":"<?xml encoding=\"utf-8\" ?><?xml encoding=\"utf-8\" ?><p>In the <strong><a href=\"https:\/\/learn.microsoft.com\/en-us\/powershell\/exchange\/exchange-management-shell?view=exchange-ps\">Exchange Management Shell (EMS)<\/a><\/strong>, you use the <strong>New-MailboxRestoreRequest<\/strong> cmdlet to restore a PST file to a specific mailbox in a database. You can also use this cmdlet when restoring a soft-deleted mailbox from one Exchange mailbox store to another user in the same Exchange mailbox store or another one. It is to be noted that the command <strong>New-MailboxRestoreRequest<\/strong> will work if your Exchange mailbox database is live and accessible.<\/p><p>You will not be able to perform any restore if you have any issues with your Exchange mailbox database. This is where the <strong>Get-MailboxRestoreRequest<\/strong> command comes in handy. You can use this PowerShell command to get information on the restore requests. This will show all the requests on the mailbox, their status, and the number of restores done, thus helping in troubleshooting any issues with restoring or migrating the mailboxes. Let&rsquo;s see how to use this command with different parameters.<\/p><h2 class=\"wp-block-heading\" id=\"how-to-run-the-get-mailboxrestorerequest-cmdlet?\">How to Run the Get-MailboxRestoreRequest Cmdlet?<\/h2><p>First, you need to make sure that you have the right permissions for running the command. You need to ensure that the following Role is assigned to the username you are using to run the command and its parameters.<\/p><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"501\" height=\"122\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/Get-ManagementRole-Cmdlet.png\" alt=\"Get-ManagementRole Cmdlet\" class=\"wp-image-129430 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/Get-ManagementRole-Cmdlet.png 501w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/Get-ManagementRole-Cmdlet-300x73.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/Get-ManagementRole-Cmdlet-150x37.png 150w\" sizes=\"auto, (max-width: 501px) 100vw, 501px\" \/><\/figure>\n<\/div><p>When you run the command as given below, it will show all the restore requests.<\/p><p><code>Get-MailboxRestoreRequest<\/code><\/p><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"419\" height=\"128\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/Get-MailboxRestoreRequest.png\" alt=\"Get-MailboxRestoreRequest\" class=\"wp-image-129431 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/Get-MailboxRestoreRequest.png 419w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/Get-MailboxRestoreRequest-300x92.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/Get-MailboxRestoreRequest-150x46.png 150w\" sizes=\"auto, (max-width: 419px) 100vw, 419px\" \/><\/figure>\n<\/div><p>If you are running a lot of restores, your list will be quite long. To know the restore status of a specific user, you need to add the <strong>Identity<\/strong> parameter to the command (see the below example).<\/p><p><code>Get-MailboxRestoreRequest -Identity &lt;first name&gt;\\MailboxRestore<\/code><\/p><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"538\" height=\"125\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/Get-MailboxRestoreRequest-Identity.png\" alt=\"Get-MailboxRestoreRequest -Identity \" class=\"wp-image-129432 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/Get-MailboxRestoreRequest-Identity.png 538w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/Get-MailboxRestoreRequest-Identity-300x70.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/Get-MailboxRestoreRequest-Identity-150x35.png 150w\" sizes=\"auto, (max-width: 538px) 100vw, 538px\" \/><\/figure>\n<\/div><p>Let&rsquo;s say, you need to get the requests which are in progress and queued in a particular Exchange mailbox database. For this, you need to use the <strong>RequestQueue<\/strong> parameter in the command as given below.<\/p><p><code>Get-MailboxRestoreRequest -RequestQueue &lt;database name&gt;<\/code><\/p><p>If you like to have in return all the requests that have a particular name for the restore request, you can use the below command. If you also want the restores which are suspended, you need to add the suspend parameter at the end (see the below example).<\/p><p><code>Get-MailboxRestoreRequest -Name \"RestoreToMBD01\" -Suspend $true<\/code><\/p><p>If you have created a restore batch, you can use the <strong>BatchName<\/strong> parameter to specify the batch name to return the status of the restore requests by the specified batch.<\/p><p>If you need to return the restore requests which came from a specific database, you can use the <strong>SourceDatabase<\/strong> parameter at the end, along with the name of the database.<\/p><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"https:\/\/cloud.stellarinfo.com\/StellarRepairforExchange-B.exe\"><img loading=\"lazy\" decoding=\"async\" width=\"252\" height=\"72\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/11\/free-download-1-1-1.png\" alt=\"Free Download for Windows\" class=\"wp-image-115131 apply-gradient-on-post-images\"><\/a><\/figure>\n<\/div><h2 class=\"wp-block-heading\" id=\"what-if-something-goes-wrong?\">What if something goes wrong?<\/h2><p>As said, the <strong>Get-MailboxRestoreRequest<\/strong> command is ideal to investigate and get more information in case something went wrong with the restore or other functionalities. It might happen that failed or completed restore request was still visible on the mailbox and you will be stopped from exporting the mailbox to PST or migrating to a new Exchange Server or mailbox database.<\/p><p>In addition, the restore request may fail due to issues with the Exchange Server, corrupt or <a href=\"https:\/\/www.stellarinfo.com\/article\/recover-exchange-database-without-log.php\" target=\"_blank\" rel=\"noreferrer noopener\">missing transaction log<\/a> or database, or any other issue. In such cases, intervention from a senior administrator is required to troubleshoot the issues.<\/p><p class=\"has-text-align-center\"><\/p><p>Alternatively, you can easily skip the troubleshooting and the issue itself by using the applications, such as <a href=\"https:\/\/www.stellarinfo.com\/edb-exchange-server-recovery.htm\" target=\"_blank\" rel=\"noreferrer noopener\">Stellar Repair for Exchange<\/a>. This application allows you to open multiple mailbox databases and browse through them. You can open any database &ndash; be it healthy or in dirty shutdown state and then granularly export mailboxes and other data to PST and other file formats.<\/p><p>You can also use the application to export your mailboxes to a new Exchange Server mailbox database, a new Exchange Server, or even Microsoft 365 tenant. The application is not limited to user mailboxes but it can also process archive mailboxes, shared mailboxes, disabled mailboxes, and even public folders.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the Exchange Management Shell (EMS), you use the New-MailboxRestoreRequest cmdlet to&hellip; <a class=\"more-link\" href=\"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/\">Continue reading <span class=\"screen-reader-text\">How to Use Get-MailboxRestoreRequest Cmdlet?<\/span><\/a><\/p>\n","protected":false},"author":17,"featured_media":129724,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[25],"tags":[4864,4865],"class_list":["post-129429","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-exchange-server","tag-get-mailboxrestorerequest","tag-how-to-use-get-mailboxrestorerequest-cmdlet","entry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Use Get-MailboxRestoreRequest Cmdlet? | Stellar<\/title>\n<meta name=\"description\" content=\"In this blog, we understand how to use mailbox restore request cmdlets. However, Admin must be assigned permissions before running this cmdlet.\" \/>\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-mailboxrestorerequest-cmdlet-in-exchange-server\/\" \/>\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-MailboxRestoreRequest Cmdlet? | Stellar\" \/>\n<meta property=\"og:description\" content=\"In this blog, we understand how to use mailbox restore request cmdlets. However, Admin must be assigned permissions before running this cmdlet.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/\" \/>\n<meta property=\"og:site_name\" content=\"Stellar Data Recovery Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-31T09:25:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-21T02:35:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/How-to-Use-Get-MailboxRestoreRequest-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=\"Shelly Bhardwaj\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Shelly Bhardwaj\" \/>\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-mailboxrestorerequest-cmdlet-in-exchange-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/\"},\"author\":{\"name\":\"Shelly Bhardwaj\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/560294d29c29906f1a494397d89ac5b5\"},\"headline\":\"How to Use Get-MailboxRestoreRequest Cmdlet?\",\"datePublished\":\"2023-03-31T09:25:40+00:00\",\"dateModified\":\"2025-05-21T02:35:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/\"},\"wordCount\":629,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/How-to-Use-Get-MailboxRestoreRequest-Cmdlet.jpg\",\"keywords\":[\"Get-MailboxRestoreRequest\",\"How to Use Get-MailboxRestoreRequest Cmdlet\"],\"articleSection\":[\"Exchange Server Recovery\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/\",\"name\":\"How to Use Get-MailboxRestoreRequest Cmdlet? | Stellar\",\"isPartOf\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/How-to-Use-Get-MailboxRestoreRequest-Cmdlet.jpg\",\"datePublished\":\"2023-03-31T09:25:40+00:00\",\"dateModified\":\"2025-05-21T02:35:34+00:00\",\"author\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/560294d29c29906f1a494397d89ac5b5\"},\"description\":\"In this blog, we understand how to use mailbox restore request cmdlets. However, Admin must be assigned permissions before running this cmdlet.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/#primaryimage\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/How-to-Use-Get-MailboxRestoreRequest-Cmdlet.jpg\",\"contentUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/How-to-Use-Get-MailboxRestoreRequest-Cmdlet.jpg\",\"width\":1000,\"height\":600,\"caption\":\"How to Use Get-MailboxRestoreRequest Cmdlet\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.stellarinfo.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Use Get-MailboxRestoreRequest Cmdlet?\"}]},{\"@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\/560294d29c29906f1a494397d89ac5b5\",\"name\":\"Shelly Bhardwaj\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/55b79705325614a5202bfcbe257c51b4bfd3229f8c27cd88856c412e9d171b8d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/55b79705325614a5202bfcbe257c51b4bfd3229f8c27cd88856c412e9d171b8d?s=96&d=mm&r=g\",\"caption\":\"Shelly Bhardwaj\"},\"description\":\"I am a Product Consultant and is associated with Stellar Data Recovery from last 8 years. I write about the latest technology tips and provide custom solutions related to Exchange Server, Office 365, MS Outlook, and many other Email Clients &amp; different flavors of OS Servers. Read More\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/shelly-bhardwaj\/\"],\"url\":\"https:\/\/www.stellarinfo.com\/blog\/author\/shelly\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Use Get-MailboxRestoreRequest Cmdlet? | Stellar","description":"In this blog, we understand how to use mailbox restore request cmdlets. However, Admin must be assigned permissions before running this cmdlet.","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-mailboxrestorerequest-cmdlet-in-exchange-server\/","og_locale":"en_US","og_type":"article","og_title":"How to Use Get-MailboxRestoreRequest Cmdlet? | Stellar","og_description":"In this blog, we understand how to use mailbox restore request cmdlets. However, Admin must be assigned permissions before running this cmdlet.","og_url":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/","og_site_name":"Stellar Data Recovery Blog","article_published_time":"2023-03-31T09:25:40+00:00","article_modified_time":"2025-05-21T02:35:34+00:00","og_image":[{"width":1000,"height":600,"url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/How-to-Use-Get-MailboxRestoreRequest-Cmdlet.jpg","type":"image\/jpeg"}],"author":"Shelly Bhardwaj","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Shelly Bhardwaj","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/#article","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/"},"author":{"name":"Shelly Bhardwaj","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/560294d29c29906f1a494397d89ac5b5"},"headline":"How to Use Get-MailboxRestoreRequest Cmdlet?","datePublished":"2023-03-31T09:25:40+00:00","dateModified":"2025-05-21T02:35:34+00:00","mainEntityOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/"},"wordCount":629,"commentCount":0,"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/How-to-Use-Get-MailboxRestoreRequest-Cmdlet.jpg","keywords":["Get-MailboxRestoreRequest","How to Use Get-MailboxRestoreRequest Cmdlet"],"articleSection":["Exchange Server Recovery"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/","url":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/","name":"How to Use Get-MailboxRestoreRequest Cmdlet? | Stellar","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/#primaryimage"},"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/How-to-Use-Get-MailboxRestoreRequest-Cmdlet.jpg","datePublished":"2023-03-31T09:25:40+00:00","dateModified":"2025-05-21T02:35:34+00:00","author":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/560294d29c29906f1a494397d89ac5b5"},"description":"In this blog, we understand how to use mailbox restore request cmdlets. However, Admin must be assigned permissions before running this cmdlet.","breadcrumb":{"@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/#primaryimage","url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/How-to-Use-Get-MailboxRestoreRequest-Cmdlet.jpg","contentUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/03\/How-to-Use-Get-MailboxRestoreRequest-Cmdlet.jpg","width":1000,"height":600,"caption":"How to Use Get-MailboxRestoreRequest Cmdlet"},{"@type":"BreadcrumbList","@id":"https:\/\/www.stellarinfo.com\/blog\/use-get-mailboxrestorerequest-cmdlet-in-exchange-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.stellarinfo.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Use Get-MailboxRestoreRequest Cmdlet?"}]},{"@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\/560294d29c29906f1a494397d89ac5b5","name":"Shelly Bhardwaj","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/55b79705325614a5202bfcbe257c51b4bfd3229f8c27cd88856c412e9d171b8d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/55b79705325614a5202bfcbe257c51b4bfd3229f8c27cd88856c412e9d171b8d?s=96&d=mm&r=g","caption":"Shelly Bhardwaj"},"description":"I am a Product Consultant and is associated with Stellar Data Recovery from last 8 years. I write about the latest technology tips and provide custom solutions related to Exchange Server, Office 365, MS Outlook, and many other Email Clients &amp; different flavors of OS Servers. Read More","sameAs":["https:\/\/www.linkedin.com\/in\/shelly-bhardwaj\/"],"url":"https:\/\/www.stellarinfo.com\/blog\/author\/shelly\/"}]}},"_links":{"self":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/129429","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\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/comments?post=129429"}],"version-history":[{"count":9,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/129429\/revisions"}],"predecessor-version":[{"id":182538,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/129429\/revisions\/182538"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media\/129724"}],"wp:attachment":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media?parent=129429"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/categories?post=129429"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/tags?post=129429"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}