{"id":195,"date":"2018-05-13T05:51:43","date_gmt":"2018-05-13T05:51:43","guid":{"rendered":"http:\/\/www.blog.mozesoft.com\/?p=195"},"modified":"2018-05-13T05:51:43","modified_gmt":"2018-05-13T05:51:43","slug":"how-to-exchange-2010-mailbox-to-pst-with-date-range","status":"publish","type":"post","link":"https:\/\/www.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/","title":{"rendered":"How to Exchange 2010 mailbox to PST with Date Range"},"content":{"rendered":"<p>This could be a great idea to export data for a particular date range in Exchange Server 2010, rather than exporting complete mailbox only for selective data. Sometime as an Exchange Administrator I need to export only selective mailbox item in a time range for keep the data as backup, or one of the user used to do this for create a monthly archive for a particular mailbox.<\/p>\n<p>Fortunately, Exchange Server 2010 runs PowerShell command <em>New-MailboxExportRequest<\/em> filters and export data with a date range. Let\u2019s take an example where I\u2019ll export the entire messages in the <em>report<\/em> mailbox which have been received in January 2015.<\/p>\n<p><strong><em>New-MailboxExportRequest -ContentFilter {(Received -lt &#8217;02\/01\/2015&#8242;) -and (Received -gt &#8217;12\/31\/2014&#8242;)} -Mailbox report -FilePath \\\\srv-ex2k13mb01\\d$\\report_Export_January2015.pst<\/em><\/strong><\/p>\n<p>The above scripts will scan and export all the messages in PST file kept in D drive, which have received before February the 2nd and after December the 31th.<\/p>\n<p>However if you want to customize filter in the above PowerShell command, it isn\u2019t over yet. The <em>\u2013ContentFilter <\/em>parameters takes bunch of filterable properties to export only desired mailbox data in PST form. Let\u2019s take another example-<\/p>\n<p>Rather than specific date range, you can also export all those email which sent to<em> report <\/em>mailbox from user <em>JohnPlayer. <\/em>Run the following command-<\/p>\n<p><strong><em>New-MailboxExportRequest -ContentFilter {ContentFilter {Sender -eq &#8216;johnplayer@info.com&#8217;}} -Mailbox report -FilePath \\\\srv-ex2k13mb01\\d$\\report_Export.pst<\/em><\/strong><\/p>\n<p>You can also tweak mailbox export command to export only selective items that match with subject line <em>Deals. <\/em>Run the following command to execute this-<\/p>\n<p><strong><em>New-MailboxExportRequest -ContentFilter {ContentFilter {Subject -like *Deals*}} -Mailbox report -FilePath \\\\srv-ex2k13mb01\\d$\\report_Export.pst<\/em><\/strong><\/p>\n<p>If you want to export all the messages which sent between a date range, run this exchange cmdlets-<\/p>\n<p><strong><em>New-MailboxExportRequest -ContentFilter {(Sent -lt &#8217;02\/01\/2014&#8242;) -and (Sent -gt &#8217;12\/31\/2014&#8242;)} -Mailbox report -FilePath \\\\szhex04\\d$\\report_Send_Export_data_Dec2013.pst<\/em><\/strong><\/p>\n<p>Unfortunately, there is no GUI option available in Exchange Server 2010 for export user\u2019s mailbox data to .pst between certain dates. But the good thing is that you can use cmdlets to export selective data from the mailbox.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This could be a great idea to export data for a particular date range in Exchange Server 2010, rather than exporting complete mailbox only for selective data. Sometime as an Exchange Administrator I need to export only selective mailbox item in a time range for keep the data as backup, or one of the user [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[],"class_list":["post-195","post","type-post","status-publish","format-standard","hentry","category-exchange-server"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Exchange 2010 mailbox to PST with Date Range - Blog<\/title>\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.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Exchange 2010 mailbox to PST with Date Range - Blog\" \/>\n<meta property=\"og:description\" content=\"This could be a great idea to export data for a particular date range in Exchange Server 2010, rather than exporting complete mailbox only for selective data. Sometime as an Exchange Administrator I need to export only selective mailbox item in a time range for keep the data as backup, or one of the user [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-05-13T05:51:43+00:00\" \/>\n<meta name=\"author\" content=\"Adsank\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Adsank\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/\"},\"author\":{\"name\":\"Adsank\",\"@id\":\"https:\/\/www.mozesoft.com\/blog\/#\/schema\/person\/79fc1ff8cfa9fe3f16bedffefc53359c\"},\"headline\":\"How to Exchange 2010 mailbox to PST with Date Range\",\"datePublished\":\"2018-05-13T05:51:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/\"},\"wordCount\":356,\"articleSection\":[\"Exchange Server\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/\",\"url\":\"https:\/\/www.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/\",\"name\":\"How to Exchange 2010 mailbox to PST with Date Range - Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.mozesoft.com\/blog\/#website\"},\"datePublished\":\"2018-05-13T05:51:43+00:00\",\"author\":{\"@id\":\"https:\/\/www.mozesoft.com\/blog\/#\/schema\/person\/79fc1ff8cfa9fe3f16bedffefc53359c\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.mozesoft.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Exchange 2010 mailbox to PST with Date Range\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.mozesoft.com\/blog\/#website\",\"url\":\"https:\/\/www.mozesoft.com\/blog\/\",\"name\":\"Blog\",\"description\":\"IT Knowledgebase\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.mozesoft.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.mozesoft.com\/blog\/#\/schema\/person\/79fc1ff8cfa9fe3f16bedffefc53359c\",\"name\":\"Adsank\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.mozesoft.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/16e1b860aa1c6c11b188d686f734c33318307888d91fee8cd1550025f1c788a0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/16e1b860aa1c6c11b188d686f734c33318307888d91fee8cd1550025f1c788a0?s=96&d=mm&r=g\",\"caption\":\"Adsank\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Exchange 2010 mailbox to PST with Date Range - Blog","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.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/","og_locale":"en_US","og_type":"article","og_title":"How to Exchange 2010 mailbox to PST with Date Range - Blog","og_description":"This could be a great idea to export data for a particular date range in Exchange Server 2010, rather than exporting complete mailbox only for selective data. Sometime as an Exchange Administrator I need to export only selective mailbox item in a time range for keep the data as backup, or one of the user [&hellip;]","og_url":"https:\/\/www.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/","og_site_name":"Blog","article_published_time":"2018-05-13T05:51:43+00:00","author":"Adsank","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Adsank","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/#article","isPartOf":{"@id":"https:\/\/www.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/"},"author":{"name":"Adsank","@id":"https:\/\/www.mozesoft.com\/blog\/#\/schema\/person\/79fc1ff8cfa9fe3f16bedffefc53359c"},"headline":"How to Exchange 2010 mailbox to PST with Date Range","datePublished":"2018-05-13T05:51:43+00:00","mainEntityOfPage":{"@id":"https:\/\/www.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/"},"wordCount":356,"articleSection":["Exchange Server"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/","url":"https:\/\/www.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/","name":"How to Exchange 2010 mailbox to PST with Date Range - Blog","isPartOf":{"@id":"https:\/\/www.mozesoft.com\/blog\/#website"},"datePublished":"2018-05-13T05:51:43+00:00","author":{"@id":"https:\/\/www.mozesoft.com\/blog\/#\/schema\/person\/79fc1ff8cfa9fe3f16bedffefc53359c"},"breadcrumb":{"@id":"https:\/\/www.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.mozesoft.com\/blog\/how-to-exchange-2010-mailbox-to-pst-with-date-range\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.mozesoft.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Exchange 2010 mailbox to PST with Date Range"}]},{"@type":"WebSite","@id":"https:\/\/www.mozesoft.com\/blog\/#website","url":"https:\/\/www.mozesoft.com\/blog\/","name":"Blog","description":"IT Knowledgebase","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.mozesoft.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.mozesoft.com\/blog\/#\/schema\/person\/79fc1ff8cfa9fe3f16bedffefc53359c","name":"Adsank","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mozesoft.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/16e1b860aa1c6c11b188d686f734c33318307888d91fee8cd1550025f1c788a0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/16e1b860aa1c6c11b188d686f734c33318307888d91fee8cd1550025f1c788a0?s=96&d=mm&r=g","caption":"Adsank"}}]}},"_links":{"self":[{"href":"https:\/\/www.mozesoft.com\/blog\/wp-json\/wp\/v2\/posts\/195","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.mozesoft.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.mozesoft.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.mozesoft.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.mozesoft.com\/blog\/wp-json\/wp\/v2\/comments?post=195"}],"version-history":[{"count":1,"href":"https:\/\/www.mozesoft.com\/blog\/wp-json\/wp\/v2\/posts\/195\/revisions"}],"predecessor-version":[{"id":196,"href":"https:\/\/www.mozesoft.com\/blog\/wp-json\/wp\/v2\/posts\/195\/revisions\/196"}],"wp:attachment":[{"href":"https:\/\/www.mozesoft.com\/blog\/wp-json\/wp\/v2\/media?parent=195"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.mozesoft.com\/blog\/wp-json\/wp\/v2\/categories?post=195"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.mozesoft.com\/blog\/wp-json\/wp\/v2\/tags?post=195"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}