<body><script type="text/javascript"> function setAttributeOnload(object, attribute, val) { if(window.addEventListener) { window.addEventListener('load', function(){ object[attribute] = val; }, false); } else { window.attachEvent('onload', function(){ object[attribute] = val; }); } } </script> <div id="navbar-iframe-container"></div> <script type="text/javascript" src="https://apis.google.com/js/platform.js"></script> <script type="text/javascript"> gapi.load("gapi.iframes:gapi.iframes.style.bubble", function() { if (gapi.iframes && gapi.iframes.getContext) { gapi.iframes.getContext().openChild({ url: 'https://www.blogger.com/navbar.g?targetBlogID\x3d8584375735658002348\x26blogName\x3dwebkod\x26publishMode\x3dPUBLISH_MODE_BLOGSPOT\x26navbarType\x3dLIGHT\x26layoutType\x3dCLASSIC\x26searchRoot\x3dhttps://webkod.blogspot.com/search\x26blogLocale\x3den_US\x26v\x3d2\x26homepageUrl\x3dhttp://webkod.blogspot.com/\x26vt\x3d-73378792427969800', where: document.getElementById("navbar-iframe-container"), id: "navbar-iframe" }); } }); </script>

Exchange 2010 SP1: Exporting Mailboxes

Tuesday, June 28, 2011 by kod

Exporting data from an Exchange 2010 SP1 mailbox to .pst file.
You use the following command:

New-MailboxExportRequest –Mailbox webkod –FilePath \\Srv\pst\webkod.pst

This will take all folders and data and export them into the specified .pst file.
If we want to add different parameters, we can find them here
Be careful, as in Exchange 2010 (non SP1 version) the command was different:


Export-mailbox -Identity webkod -PSTFolderPath c:\pst


There are a lot of new features in SP1's version of Exchange 2010, but if you still have the previous version, check out this tutorial on how you can export the mailbox.