{"id":175225,"date":"2024-11-14T12:21:43","date_gmt":"2024-11-14T12:21:43","guid":{"rendered":"https:\/\/www.stellarinfo.com\/blog\/?p=175225"},"modified":"2025-10-07T10:30:27","modified_gmt":"2025-10-07T10:30:27","slug":"get-moverequest-cmdlet-in-exchange-server","status":"publish","type":"post","link":"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/","title":{"rendered":"How to Use Get-MoveRequest Cmdlet in Exchange Server?"},"content":{"rendered":"<?xml encoding=\"utf-8\" ?><?xml encoding=\"utf-8\" ?><p>You can use the <strong>New-MoveRequest<\/strong> PowerShell cmdlet in Exchange Server or Exchange Online to move the mailboxes from one database to another. However, after the move request is initiated, the cmdlet doesn&rsquo;t show any status or progress of the mailbox move request. To get the detailed status of move requests initiated by the cmdlet, you need to use the <strong>Get-MoveRequest<\/strong> PowerShell cmdlet. This cmdlet helps you to find out if the mailbox move requests are in-progress, suspended, completed, failed, or need any additional action to perform. There are various parameters or switches that you can use with the cmdlet to filter the search results or get specific information. Below, we will discuss how to use the Get-MoveRequest PowerShell cmdlet, along with different switches or parameters.<\/p><h2 class=\"wp-block-heading\" id=\"using-the-get-moverequest-powershell-cmdlet-in-exchange\">Using the Get-MoveRequest PowerShell Cmdlet in Exchange<\/h2><p>Before using the Get-MoveRequest cmdlet, you need to ensure that the user account you&rsquo;ll be using to run the cmdlet has <a href=\"https:\/\/learn.microsoft.com\/en-us\/powershell\/exchange\/find-exchange-cmdlet-permissions?view=exchange-ps\" rel=\"nofollow\">the required roles and permissions assigned<\/a>. For example, the user must be a member of the <strong>Role Group<\/strong> that contains the <strong>Migration<\/strong> permissions.<\/p><p>Open the Exchange Management Shell (EMS) as an administrator and simply run thecmdlet as given below:<\/p><pre class=\"wp-block-code command_container\"><code><strong>Get-MoveRequest<\/strong><\/code><\/pre><figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"121\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/Get-MoveRequest-1024x121.png\" alt=\"Get MoveRequest\" class=\"wp-image-175226 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/Get-MoveRequest-1024x121.png 1024w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/Get-MoveRequest-300x35.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/Get-MoveRequest-768x91.png 768w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/Get-MoveRequest-1536x181.png 1536w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/Get-MoveRequest-1568x185.png 1568w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/Get-MoveRequest-150x18.png 150w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/Get-MoveRequest.png 1804w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure><p>The above cmdlet will provide a list of all the mailbox move requests on the server, along with their progress status. You can see the mailboxes name under <strong>DisplayName<\/strong>, status of the request under <strong>Status,<\/strong> and the name of the database to which the mailbox is being moved under <strong>TargetDatabase<\/strong>.<\/p><p>Under the <strong>Status<\/strong> column, you can see the following values:<\/p><ul class=\"wp-block-list\">\n<li><strong>Queued<\/strong>: The move request is waiting to be processed. This status is displayed when multiple move requests are already in progress.<\/li>\n\n\n\n<li><strong>InProgress<\/strong>: The move request is being processed.<\/li>\n\n\n\n<li><strong>Completed<\/strong>: The move request has been successfully completed.<\/li>\n\n\n\n<li><strong>CompletedWithWarning<\/strong>: The move request is completed but had warnings. This can happen due to different reasons. For example, the source mailbox is not cleaned up after the move.<\/li>\n\n\n\n<li><strong>CompletionInProgress<\/strong>: The move request is in the final stages of completion.<\/li>\n\n\n\n<li><strong>Failed<\/strong>: The mailbox move request has failed. This status is displayed when the mailbox has large number of bad items or due to lack of proper permissions.<\/li>\n\n\n\n<li><strong>Suspended<\/strong>: The move request is suspended. This status is displayed when the move request is submitted with the &lsquo;<strong>suspend<\/strong>&rsquo; parameter.<\/li>\n\n\n\n<li><strong>AutoSuspended<\/strong>: The move request is currently in suspended mode. This status is displayed when the move request is submitted with the <strong>&lsquo;SuspendWhenReadyToComplete&rsquo;<\/strong> parameter.<\/li>\n\n\n\n<li><strong>Retrying<\/strong>: The move request is running again after encountering an error. This happens due to temporary issues, like connectivity problems, etc.<\/li>\n<\/ul><p>You can also use the <strong>Get-MoveRequest<\/strong> cmdlet with different parameters to get specific information.<\/p><p>To get information about the move requests that are completed, you can use the cmdlet with <strong>&ndash;MoveStatus Completed <\/strong>parameter (see the below example).<\/p><pre class=\"wp-block-code command_container\"><code><strong>Get-MoveRequest &ndash;MoveStatus Completed<\/strong><\/code><\/pre><figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/Get-MoveRequest-%E2%80%93MoveStatus-Completed-1024x156.png\" alt=\"Get MoveRequest &ndash;MoveStatus Completed\" class=\"wp-image-175227 apply-gradient-on-post-images\"><\/figure><p>If you want to know the move request details of a particular mailbox, you can use the <strong>&ndash;Identity<\/strong> parameter with the cmdlet (see the below example).<\/p><pre class=\"wp-block-code command_container\"><code><strong>Get-MoveRequest &ndash;Identity &lt;Mailbox identity&gt;<\/strong><\/code><\/pre><figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/Get-MoveRequest-%E2%80%93Identity-1024x148.png\" alt=\"Get MoveRequest &ndash;Identity\" class=\"wp-image-175228 apply-gradient-on-post-images\"><\/figure><p><strong><em>Note: <\/em><\/strong><em>You can use the mailbox name or the email ID as the input value for the identity parameter.<\/em><\/p><p>If you want to know the number of mailboxes that have been successfully moved to the target database, you can use the <strong>Get-MoveRequest<\/strong> cmdlet as given below:<\/p><pre class=\"wp-block-code command_container\"><code><strong>Get-MoveRequest &ndash;MoveStatus &lt;Required status&gt; -TargetDatabase &lt;Name of the database&gt;<\/strong><\/code><\/pre><figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"150\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/If-you-want-to-know-the-number-of-mailboxes-that-have-been-successfully-moved-to-the-target-database-you-can-use-the-Get-MoveRequest-cmdlet-as-given-below-1024x150.png\" alt=\"If you want to know the number of mailboxes that have been successfully moved to the target database, you can use the Get MoveRequest cmdlet as given below\" class=\"wp-image-175229 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/If-you-want-to-know-the-number-of-mailboxes-that-have-been-successfully-moved-to-the-target-database-you-can-use-the-Get-MoveRequest-cmdlet-as-given-below-1024x150.png 1024w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/If-you-want-to-know-the-number-of-mailboxes-that-have-been-successfully-moved-to-the-target-database-you-can-use-the-Get-MoveRequest-cmdlet-as-given-below-300x44.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/If-you-want-to-know-the-number-of-mailboxes-that-have-been-successfully-moved-to-the-target-database-you-can-use-the-Get-MoveRequest-cmdlet-as-given-below-768x112.png 768w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/If-you-want-to-know-the-number-of-mailboxes-that-have-been-successfully-moved-to-the-target-database-you-can-use-the-Get-MoveRequest-cmdlet-as-given-below-150x22.png 150w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/If-you-want-to-know-the-number-of-mailboxes-that-have-been-successfully-moved-to-the-target-database-you-can-use-the-Get-MoveRequest-cmdlet-as-given-below.png 1373w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure><h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2><p>The <strong>Get-MoveRequest<\/strong> PowerShell cmdlet is used to view the status and other details of the mailboxes that are being moved or migrated from one database to another using the <strong>New-MoveRequest <\/strong>cmdlet. Above, we have explained how to use the <strong>Get-MoveRequest<\/strong> cmdlet. In case the cmdlet shows the move request status against a mailbox as failed, then you need to check and resolve the issue that have caused the move request to fail. Then, you need to again try to move the mailbox. To avoid such hassles, you can use an <a href=\"https:\/\/www.stellarinfo.com\/edb-to-pst-converter.php\">EDB to PST converter<\/a> software, such as <strong>Stellar Converter for EDB <\/strong>tomigrate mailboxes from the Exchange database file directly to another database on a live Exchange Server. The software scans the EDB file (online or offline), extracts the mailboxes, and listed them on a screen similar to that of Outlook. It can also export the mailboxes and other items from the EDB file to PST and other formats, such as HTML, EML, and PDF, or directly to an Office 365 tenant. The software does not require any additional permissions to perform the move process. Furthermore, it shows the real-time progress status of the mailbox migration.<\/p><p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>You can use the New-MoveRequest PowerShell cmdlet in Exchange Server or Exchange&hellip; <a class=\"more-link\" href=\"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/\">Continue reading <span class=\"screen-reader-text\">How to Use Get-MoveRequest Cmdlet in Exchange Server?<\/span><\/a><\/p>\n","protected":false},"author":95,"featured_media":175264,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[823],"tags":[],"class_list":["post-175225","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>How to use the Get-MoveRequest cmdlet in Exchange Server<\/title>\n<meta name=\"description\" content=\"Learn how to use the Get-MoveRequest to view the status and other details of mailbox move 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\/get-moverequest-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 the Get-MoveRequest cmdlet in Exchange Server\" \/>\n<meta property=\"og:description\" content=\"Learn how to use the Get-MoveRequest to view the status and other details of mailbox move requests.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/\" \/>\n<meta property=\"og:site_name\" content=\"Stellar Data Recovery Blog\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-14T12:21:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-07T10:30:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/How-to-Use-Get-MoveRequest-Cmdlet-in-Exchange-Server-1.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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/\"},\"author\":{\"name\":\"Anubhuti Sinha\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/6e25a24438bdade7cc6a17f8af4fe18e\"},\"headline\":\"How to Use Get-MoveRequest Cmdlet in Exchange Server?\",\"datePublished\":\"2024-11-14T12:21:43+00:00\",\"dateModified\":\"2025-10-07T10:30:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/\"},\"wordCount\":732,\"image\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/How-to-Use-Get-MoveRequest-Cmdlet-in-Exchange-Server-1.jpg\",\"articleSection\":[\"EDB to PST Converter\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/\",\"name\":\"How to use the Get-MoveRequest cmdlet in Exchange Server\",\"isPartOf\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/How-to-Use-Get-MoveRequest-Cmdlet-in-Exchange-Server-1.jpg\",\"datePublished\":\"2024-11-14T12:21:43+00:00\",\"dateModified\":\"2025-10-07T10:30:27+00:00\",\"author\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/6e25a24438bdade7cc6a17f8af4fe18e\"},\"description\":\"Learn how to use the Get-MoveRequest to view the status and other details of mailbox move requests.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/#primaryimage\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/How-to-Use-Get-MoveRequest-Cmdlet-in-Exchange-Server-1.jpg\",\"contentUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/How-to-Use-Get-MoveRequest-Cmdlet-in-Exchange-Server-1.jpg\",\"width\":1000,\"height\":600,\"caption\":\"How to Use Get MoveRequest Cmdlet in Exchange Server\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-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-MoveRequest 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 the Get-MoveRequest cmdlet in Exchange Server","description":"Learn how to use the Get-MoveRequest to view the status and other details of mailbox move 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\/get-moverequest-cmdlet-in-exchange-server\/","og_locale":"en_US","og_type":"article","og_title":"How to use the Get-MoveRequest cmdlet in Exchange Server","og_description":"Learn how to use the Get-MoveRequest to view the status and other details of mailbox move requests.","og_url":"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/","og_site_name":"Stellar Data Recovery Blog","article_published_time":"2024-11-14T12:21:43+00:00","article_modified_time":"2025-10-07T10:30:27+00:00","og_image":[{"width":1000,"height":600,"url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/How-to-Use-Get-MoveRequest-Cmdlet-in-Exchange-Server-1.jpg","type":"image\/jpeg"}],"author":"Anubhuti Sinha","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Anubhuti Sinha","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/#article","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/"},"author":{"name":"Anubhuti Sinha","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/6e25a24438bdade7cc6a17f8af4fe18e"},"headline":"How to Use Get-MoveRequest Cmdlet in Exchange Server?","datePublished":"2024-11-14T12:21:43+00:00","dateModified":"2025-10-07T10:30:27+00:00","mainEntityOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/"},"wordCount":732,"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/How-to-Use-Get-MoveRequest-Cmdlet-in-Exchange-Server-1.jpg","articleSection":["EDB to PST Converter"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/","url":"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/","name":"How to use the Get-MoveRequest cmdlet in Exchange Server","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/#primaryimage"},"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/How-to-Use-Get-MoveRequest-Cmdlet-in-Exchange-Server-1.jpg","datePublished":"2024-11-14T12:21:43+00:00","dateModified":"2025-10-07T10:30:27+00:00","author":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/6e25a24438bdade7cc6a17f8af4fe18e"},"description":"Learn how to use the Get-MoveRequest to view the status and other details of mailbox move requests.","breadcrumb":{"@id":"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-cmdlet-in-exchange-server\/#primaryimage","url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/How-to-Use-Get-MoveRequest-Cmdlet-in-Exchange-Server-1.jpg","contentUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2024\/11\/How-to-Use-Get-MoveRequest-Cmdlet-in-Exchange-Server-1.jpg","width":1000,"height":600,"caption":"How to Use Get MoveRequest Cmdlet in Exchange Server"},{"@type":"BreadcrumbList","@id":"https:\/\/www.stellarinfo.com\/blog\/get-moverequest-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-MoveRequest 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\/175225","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=175225"}],"version-history":[{"count":6,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/175225\/revisions"}],"predecessor-version":[{"id":186029,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/175225\/revisions\/186029"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media\/175264"}],"wp:attachment":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media?parent=175225"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/categories?post=175225"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/tags?post=175225"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}