<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Compliance Security | KC's Blog</title>
	<atom:link href="https://www.kjctech.net/tag/compliance-security/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.kjctech.net</link>
	<description></description>
	<lastBuildDate>Tue, 24 Jan 2023 18:20:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/12/cropped-KC-Logo.png?fit=32%2C32&#038;ssl=1</url>
	<title>Compliance Security | KC's Blog</title>
	<link>https://www.kjctech.net</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">24634607</site>	<item>
		<title>How To Export Mailboxes from Microsoft 365 in PST</title>
		<link>https://www.kjctech.net/how-to-export-mailboxes-from-microsoft-365-in-pst/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-export-mailboxes-from-microsoft-365-in-pst</link>
					<comments>https://www.kjctech.net/how-to-export-mailboxes-from-microsoft-365-in-pst/#respond</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Wed, 19 May 2021 06:13:33 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Compliance Security]]></category>
		<category><![CDATA[Microsoft 365]]></category>
		<category><![CDATA[PST]]></category>
		<guid isPermaLink="false">https://www.kjctech.net/?p=4622</guid>

					<description><![CDATA[<p>Before you delete a mailbox from Microsoft 365, it&#8217;s always a good idea making a copy of the mailbox as a backup, just in case later on there are something there you want to dig up. But how can we do that, since there is no direct way of doing it? And no, exporting the mailbox out of Outlook isn&#8217;t [&#8230;]</p>
The post <a href="https://www.kjctech.net/how-to-export-mailboxes-from-microsoft-365-in-pst/">How To Export Mailboxes from Microsoft 365 in PST</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>Before you delete a mailbox from Microsoft 365, it&#8217;s always a good idea making a copy of the mailbox as a backup, just in case later on there are something there you want to dig up. But how can we do that, since there is no direct way of doing it? And no, exporting the mailbox out of Outlook isn&#8217;t an option and shouldn&#8217;t be considered anyway.</p>



<p>In short, you start with <strong>New-ComplianceSearch</strong> to gather the information and then export the result in a PST file that you can download using eDiscovery Export Tool.</p>



<p>And here is how to make it happen, step-by-step.</p>



<h3 class="wp-block-heading">Connecting to Compliance Service</h3>



<p>Let&#8217;s open a PowerShell session,</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: Code example:; notranslate">
$username = 'user@domain.com'
$pwd = ConvertTo-SecureString 'pass@ord' -asplaintext -force;
$cred = New-Object -TypeName PSCredential -argumentlist $username, $pwd

Connect-ExchangeOnline -Credential $cred
Connect-IPPSSession -Credential $cred
</pre></div>


<p>Once successfully connected, the right modules, along with the accessible cmdlets, will be automatically installed and imported.</p>



<h3 class="wp-block-heading">Granting proper permissions</h3>



<p>Run the following to find out who has the access to the <strong>Mailbox Search</strong> role.</p>



<pre class="wp-block-preformatted">Get-ManagementRoleAssignment -Role 'Mailbox Search' -GetEffectiveUsers</pre>



<p>To assign, </p>



<pre class="wp-block-preformatted">Add-RoleGroupMember 'Discovery Management' -member name@domain.com</pre>



<p>Note that you will need the <strong>Mailbox Search </strong>role to create searches and the <strong>Mailbox Import Export</strong> role to export or delete the search result.</p>



<h3 class="wp-block-heading">Creating a new Compliance Search</h3>



<p>Now it&#8217;s ready to create a new compliance search for a specific mailbox and run it right after.</p>



<pre class="wp-block-preformatted">New-ComplianceSearch 'name_of_the-search' -ExchangeLocation .name@domain.com | Start-ComplianceSearch</pre>



<p>Note that it&#8217;s important to include the &#8216;.&#8217; in front of the email address if it&#8217;s a shared mailbox. </p>



<p>You can use the <strong>Set-ComplianceSearch</strong> to reset the search query and re-run the search with <strong>Start-ComplianceSearch</strong>.</p>



<h3 class="wp-block-heading">Checking the Result</h3>



<p>Let&#8217;s log back into Microsoft 365 Compliances portal, go to Content search, and click the name of the search to find out.</p>



<figure class="wp-block-image size-large"><img fetchpriority="high" decoding="async" width="600" height="282" src="//i0.wp.com/kjctech.net/wp-content/uploads/2021/05/image-9-600x282.png" alt="" class="wp-image-4629" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-9.png?resize=600%2C282&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-9.png?resize=450%2C211&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-9.png?resize=250%2C117&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-9.png?resize=768%2C361&amp;ssl=1 768w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-9.png?resize=700%2C329&amp;ssl=1 700w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-9.png?resize=520%2C244&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-9.png?resize=360%2C169&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-9.png?resize=100%2C47&amp;ssl=1 100w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-9.png?w=843&amp;ssl=1 843w" sizes="(max-width: 600px) 100vw, 600px" /></figure>



<p>From there, you can start the exporting process by clicking Action and Export results.</p>



<figure class="wp-block-image size-large"><img decoding="async" width="529" height="337" src="//i0.wp.com/kjctech.net/wp-content/uploads/2021/05/image-8.png" alt="" class="wp-image-4628" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-8.png?w=529&amp;ssl=1 529w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-8.png?resize=450%2C287&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-8.png?resize=250%2C159&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-8.png?resize=520%2C331&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-8.png?resize=360%2C229&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-8.png?resize=100%2C64&amp;ssl=1 100w" sizes="(max-width: 529px) 100vw, 529px" /></figure>



<h3 class="wp-block-heading">Downloading the PST</h3>



<p>Once the exported data is ready for download, head over to the <strong>Export tab</strong>, and open the export detail to find out a set of Export key that you will need when downloading the data.</p>



<figure class="wp-block-image size-large"><img data-recalc-dims="1" decoding="async" width="600" height="270" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-6.png?resize=600%2C270&#038;ssl=1" alt="" class="wp-image-4626" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-6.png?resize=600%2C270&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-6.png?resize=450%2C202&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-6.png?resize=250%2C112&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-6.png?resize=768%2C345&amp;ssl=1 768w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-6.png?resize=700%2C315&amp;ssl=1 700w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-6.png?resize=520%2C234&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-6.png?resize=360%2C162&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-6.png?resize=100%2C45&amp;ssl=1 100w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-6.png?w=861&amp;ssl=1 861w" sizes="(max-width: 600px) 100vw, 600px" /></figure>



<p>You will need to use Edge browser to download the data via a tool called <strong>eDiscovery Export Tool</strong>.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="597" height="360" src="//i0.wp.com/kjctech.net/wp-content/uploads/2021/05/image-7.png" alt="" class="wp-image-4627" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-7.png?w=597&amp;ssl=1 597w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-7.png?resize=450%2C271&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-7.png?resize=250%2C151&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-7.png?resize=520%2C314&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-7.png?resize=360%2C217&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/05/image-7.png?resize=100%2C60&amp;ssl=1 100w" sizes="auto, (max-width: 597px) 100vw, 597px" /></figure>



<p>And that&#8217;s it.</p>The post <a href="https://www.kjctech.net/how-to-export-mailboxes-from-microsoft-365-in-pst/">How To Export Mailboxes from Microsoft 365 in PST</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/how-to-export-mailboxes-from-microsoft-365-in-pst/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4622</post-id>	</item>
	</channel>
</rss>
