{"id":44804,"date":"2019-09-19T10:40:46","date_gmt":"2019-09-19T10:40:46","guid":{"rendered":"https:\/\/www.stellarinfo.com\/blog\/?p=44804"},"modified":"2026-03-26T08:44:23","modified_gmt":"2026-03-26T08:44:23","slug":"show-mailbox-repair-request-status","status":"publish","type":"post","link":"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/","title":{"rendered":"How to Use Get-MailboxRepairRequest Cmdlet in Exchange Server?"},"content":{"rendered":"<?xml encoding=\"utf-8\" ?><?xml encoding=\"utf-8\" ?><p>Mailboxes in Exchange Server database may get corrupted due to various internal and external factors. To repair the corrupted mailboxes, you can use the <strong><a href=\"https:\/\/www.stellarinfo.com\/blog\/new-mailboxrepairrequest-in-exchange-server\/\">New-MailboxRepairRequest<\/a><\/strong> PowerShell cmdlet. This cmdlet can be used to repair a single or all the mailboxes in a database. However, after the running the repair cmdlet, there is no option to see the status or progress of the mailbox repair requests initiated by this cmdlet. To get information about the current repair requests, Exchange Server provides the <strong>Get-MailboxRepairRequest<\/strong> cmdlet. This cmdlet is available in on-premises Exchange Server 2013, 2016, and 2019.<\/p><p>The <strong>Get-MailboxRepairRequest<\/strong> PowerShell cmdlet helps you to find out if the mailbox repair requests are in-progress, queued, running, succeeded, or failed. In addition, the cmdlet displays the following information:<\/p><ul class=\"wp-block-list\">\n<li>GUID of the mailbox.<\/li>\n\n\n\n<li>Type of corruption, specified when the repair request was created.<\/li>\n\n\n\n<li>Repair request progress in terms of percentage of completion.<\/li>\n\n\n\n<li>Number of corruption issues detected and resolved.<\/li>\n\n\n\n<li>Time and date when the repair request was created and finished.<\/li>\n<\/ul><p>You can also use various parameters with the cmdlet to get specific information. Below, we will discuss how to use the Get-MailboxRepairRequest PowerShell cmdlet in Exchange Server.<\/p><h2 class=\"wp-block-heading\" id=\"using-the-get-mailboxrepairrequest-cmdlet-in-exchange-server\"><strong>Using the Get-MailboxRepairRequest Cmdlet in Exchange Server<\/strong><\/h2><p>To use the <strong>Get-MailboxRepairRequest<\/strong> cmdlet, you (the user account) must have <a href=\"https:\/\/learn.microsoft.com\/en-us\/powershell\/exchange\/find-exchange-cmdlet-permissions?view=exchange-ps\">the required roles and permissions assigned<\/a>. For example, the <strong>Databases<\/strong> and <strong>Mail<\/strong> <strong>Recipients<\/strong> roles must be assigned.<\/p><p>After ensuring that the required roles and permissions are assigned, open the Exchange Management Shell (EMS) as administrator. To fetch information about a particular mailbox, run thecmdlet as given below:<\/p><pre class=\"wp-block-code command_container\"><code><strong>Get-MailboxRepairRequest &ndash;Mailbox &lt;mailbox identity&gt;<\/strong><\/code><\/pre><figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"303\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/09\/This-cmdlet-will-display-the-following-information-1024x303.png\" alt=\"This cmdlet will display the following information\" class=\"wp-image-175250 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/09\/This-cmdlet-will-display-the-following-information-1024x303.png 1024w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/09\/This-cmdlet-will-display-the-following-information-300x89.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/09\/This-cmdlet-will-display-the-following-information-768x227.png 768w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/09\/This-cmdlet-will-display-the-following-information-150x44.png 150w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/09\/This-cmdlet-will-display-the-following-information.png 1431w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure><p>This cmdlet will display the following information:<\/p><ul class=\"wp-block-list\">\n<li><strong>Identity<\/strong>: The identity property of the mailbox repair request.<\/li>\n\n\n\n<li><strong>Task<\/strong>: The corruption type for which the mailbox repair request was created.<\/li>\n\n\n\n<li><strong>Job State<\/strong>: It displays the request status, such as <strong>Queued<\/strong>, <strong>In Progress<\/strong>, <strong>Succeeded,<\/strong> and <strong>Failed<\/strong>.<\/li>\n\n\n\n<li><strong>Progress<\/strong>: The progress status of the repairing process in percentage.<\/li>\n<\/ul><p>If you want to get the Identity property of all the repair requests, you can run the cmdlet as given below:<\/p><pre class=\"wp-block-code command_container\"><code><strong>Get-MailboxDatabase | Get-MailboxRepairRequest | Format-Table Identity<\/strong><\/code><\/pre><p>If you want to get information about a particular mailbox repair request returned by the above cmdlet, use the below cmdlet:<\/p><pre class=\"wp-block-code command_container\"><code><strong>Get-MailboxRepairRequest -Identity 5b8ca3fa-8227-427f-af04-9b4f206d611f\\335c2b06-321d-4e73-b2f7-3dc2b02d0df5\\374289de-b899-42dc-8391-4f8579935f1f | Format-List<\/strong><\/code><\/pre><p>You can also use various other parameters with the <strong>Get-MailboxRepairRequest<\/strong> to get specific information, such as:<\/p><p><strong>1. &ndash;Archive Parameter<\/strong><\/p><p>If you&rsquo;ve included the archive mailbox when creating the mailbox repair request, you can use the -Archive parameter with the cmdlet to get details of the associated archive mailbox (see the below example).&nbsp;<\/p><pre class=\"wp-block-code command_container\"><code><strong>Get-MailboxRepairRequest &ndash;Identity &lt;Identity&gt; -Archive<\/strong><\/code><\/pre><p><strong>2. &ndash;Database Parameter<\/strong><\/p><p>To get the information about the repair requests of all the mailboxes in a database, you use the -Database parameter with the <strong>Get-MailboxRepairRequest<\/strong> cmdlet (see the below example).<\/p><pre class=\"wp-block-code command_container\"><code><strong>Get-MailboxRepairRequest &ndash;Database &lt;Database identity&gt;<\/strong><\/code><\/pre><p><strong><em>Note:<\/em><\/strong><em> You cannot use this parameter with the <strong>Identity<\/strong> or <strong>Mailbox<\/strong> parameters.<\/em><\/p><h2 class=\"wp-block-heading\" id=\"what-if-the-cmdlet-shows-the-mailbox-repair-request-status-as-failed?\"><strong>What if the Cmdlet shows the Mailbox Repair Request Status as Failed?<\/strong><\/h2><p>If the <strong>Get-MailboxRepairRequest<\/strong> PowerShell cmdlet shows the <strong>Job State<\/strong> status as <strong>Failed<\/strong> against a mailbox(s), then there is some major issue with the mailbox. In such a case, you can restore the mailbox from a healthy backup (if you&rsquo;ve a granular backup) or the entire database. If this is not possible, you can <a href=\"https:\/\/www.stellarinfo.com\/blog\/how-to-use-eseutil-for-exchange-database-repair\/\">use the ESEUtil cmdlets to repair and recover the database<\/a>. However, the best option is to use a trustworthy third-party&nbsp;<a href=\"https:\/\/www.stellarinfo.com\/edb-exchange-server-recovery.htm\">Exchange Server recovery<\/a>&nbsp;tool, such as Stellar Repair for Exchange. This tool can open the Exchange database (EDB) file of any size and recover the mailboxes and other items. You can then granularly export the recovered mailboxes directly to a live Exchange Server database. It can also export the EDB data to PST and Microsoft 365. This tool shows the real-time progress status of the repair and recovery process. It supports all the versions of Exchange Server &ndash; 2019, 2016, 2013, and earlier.<\/p><h2 class=\"wp-block-heading\" id=\"conclusion\"><strong>Conclusion<\/strong><\/h2><p>The <strong>Get-MailboxRepairRequest<\/strong> PowerShell cmdlet is used to view the status and other details of the mailbox repair requests that are being created using the <strong>New-MailboxRepairRequest <\/strong>cmdlet. Above, we have explained how to use the <strong>Get-MailboxRepairRequest<\/strong> cmdlet in Exchange Server. In case the cmdlet shows the repair request Job State against a mailbox as failed, then you need to check and resolve the issues with the mailbox or the database containing the mailbox. Alternatively, you can use an Exchange repair tool, such as <strong>Stellar Repair for Exchange <\/strong>to repair the corrupt Exchange databases and recover the mailboxes. The recovered mailboxes can be directly exported to a live Exchange Server database.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Mailboxes in Exchange Server database may get corrupted due to various internal&hellip; <a class=\"more-link\" href=\"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/\">Continue reading <span class=\"screen-reader-text\">How to Use Get-MailboxRepairRequest Cmdlet in Exchange Server?<\/span><\/a><\/p>\n","protected":false},"author":95,"featured_media":41618,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[25],"tags":[],"class_list":["post-44804","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-exchange-server","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-MailboxRepairRequest Cmdlet in Exchange Server<\/title>\n<meta name=\"description\" content=\"There are many reasons why your mailbox might need a repair but the most common reason is corruption. You can also try a repair on a mailbox when you have exhausted all possible solutions to an annoying issue and the last resort would be a repair. This blogs shows the steps to check the status mailbox repair request. Read for more information.\" \/>\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\/show-mailbox-repair-request-status\/\" \/>\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-MailboxRepairRequest Cmdlet in Exchange Server\" \/>\n<meta property=\"og:description\" content=\"There are many reasons why your mailbox might need a repair but the most common reason is corruption. You can also try a repair on a mailbox when you have exhausted all possible solutions to an annoying issue and the last resort would be a repair. This blogs shows the steps to check the status mailbox repair request. Read for more information.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/\" \/>\n<meta property=\"og:site_name\" content=\"Stellar Data Recovery Blog\" \/>\n<meta property=\"article:published_time\" content=\"2019-09-19T10:40:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-26T08:44:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/06\/How-to-use-new-mailboxrepairrequest-Powershell-Command.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\/show-mailbox-repair-request-status\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/\"},\"author\":{\"name\":\"Anubhuti Sinha\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/6e25a24438bdade7cc6a17f8af4fe18e\"},\"headline\":\"How to Use Get-MailboxRepairRequest Cmdlet in Exchange Server?\",\"datePublished\":\"2019-09-19T10:40:46+00:00\",\"dateModified\":\"2026-03-26T08:44:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/\"},\"wordCount\":729,\"commentCount\":1,\"image\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/06\/How-to-use-new-mailboxrepairrequest-Powershell-Command.jpg\",\"articleSection\":[\"Exchange Server Recovery\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/\",\"name\":\"How to Use Get-MailboxRepairRequest Cmdlet in Exchange Server\",\"isPartOf\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/06\/How-to-use-new-mailboxrepairrequest-Powershell-Command.jpg\",\"datePublished\":\"2019-09-19T10:40:46+00:00\",\"dateModified\":\"2026-03-26T08:44:23+00:00\",\"author\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/6e25a24438bdade7cc6a17f8af4fe18e\"},\"description\":\"There are many reasons why your mailbox might need a repair but the most common reason is corruption. You can also try a repair on a mailbox when you have exhausted all possible solutions to an annoying issue and the last resort would be a repair. This blogs shows the steps to check the status mailbox repair request. Read for more information.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/#primaryimage\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/06\/How-to-use-new-mailboxrepairrequest-Powershell-Command.jpg\",\"contentUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/06\/How-to-use-new-mailboxrepairrequest-Powershell-Command.jpg\",\"width\":1000,\"height\":600,\"caption\":\"How to use new-mailboxrepairrequest Powershell Command\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.stellarinfo.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Use Get-MailboxRepairRequest 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":"How to Use Get-MailboxRepairRequest Cmdlet in Exchange Server","description":"There are many reasons why your mailbox might need a repair but the most common reason is corruption. You can also try a repair on a mailbox when you have exhausted all possible solutions to an annoying issue and the last resort would be a repair. This blogs shows the steps to check the status mailbox repair request. Read for more information.","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\/show-mailbox-repair-request-status\/","og_locale":"en_US","og_type":"article","og_title":"How to Use Get-MailboxRepairRequest Cmdlet in Exchange Server","og_description":"There are many reasons why your mailbox might need a repair but the most common reason is corruption. You can also try a repair on a mailbox when you have exhausted all possible solutions to an annoying issue and the last resort would be a repair. This blogs shows the steps to check the status mailbox repair request. Read for more information.","og_url":"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/","og_site_name":"Stellar Data Recovery Blog","article_published_time":"2019-09-19T10:40:46+00:00","article_modified_time":"2026-03-26T08:44:23+00:00","og_image":[{"width":1000,"height":600,"url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/06\/How-to-use-new-mailboxrepairrequest-Powershell-Command.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\/show-mailbox-repair-request-status\/#article","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/"},"author":{"name":"Anubhuti Sinha","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/6e25a24438bdade7cc6a17f8af4fe18e"},"headline":"How to Use Get-MailboxRepairRequest Cmdlet in Exchange Server?","datePublished":"2019-09-19T10:40:46+00:00","dateModified":"2026-03-26T08:44:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/"},"wordCount":729,"commentCount":1,"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/06\/How-to-use-new-mailboxrepairrequest-Powershell-Command.jpg","articleSection":["Exchange Server Recovery"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/","url":"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/","name":"How to Use Get-MailboxRepairRequest Cmdlet in Exchange Server","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/#primaryimage"},"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/06\/How-to-use-new-mailboxrepairrequest-Powershell-Command.jpg","datePublished":"2019-09-19T10:40:46+00:00","dateModified":"2026-03-26T08:44:23+00:00","author":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/6e25a24438bdade7cc6a17f8af4fe18e"},"description":"There are many reasons why your mailbox might need a repair but the most common reason is corruption. You can also try a repair on a mailbox when you have exhausted all possible solutions to an annoying issue and the last resort would be a repair. This blogs shows the steps to check the status mailbox repair request. Read for more information.","breadcrumb":{"@id":"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/#primaryimage","url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/06\/How-to-use-new-mailboxrepairrequest-Powershell-Command.jpg","contentUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/06\/How-to-use-new-mailboxrepairrequest-Powershell-Command.jpg","width":1000,"height":600,"caption":"How to use new-mailboxrepairrequest Powershell Command"},{"@type":"BreadcrumbList","@id":"https:\/\/www.stellarinfo.com\/blog\/show-mailbox-repair-request-status\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.stellarinfo.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Use Get-MailboxRepairRequest 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\/44804","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=44804"}],"version-history":[{"count":30,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/44804\/revisions"}],"predecessor-version":[{"id":191126,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/44804\/revisions\/191126"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media\/41618"}],"wp:attachment":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media?parent=44804"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/categories?post=44804"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/tags?post=44804"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}