<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>

Export Mailbox in Exchange 2010 SP1

Thursday, August 30, 2012 by kod

You can export a mailbox in Exchange 2010 SP1 with a new method called Mailbox Export Requests instead of previous Export-Mailbox command.
New-MailboxExportRequest -Mailbox mihai.caltaru -FilePath \\network_share\mihai.caltaru.pst
If you don't want to export it locally, you need to configure the network share in which the permissions for Exchange Trusted Subsystem are set to read/write. Pipe Get-MailboxExportRequest into the Get-MailboxExportRequestStatistics cmdlet and you will get detailed information regarding your export. When it finishes, the request remains on the server until removed by an administrator using Remove-MailboxExportRequest. To clear all your Exchange requests:
Get-MailboxExportRequest | where {$_.status -eq "Completed"} | Remove-MailboxExportRequest

Labels: , , , ,

Blackberry Mail Store Service Event 10000

Tuesday, August 7, 2012 by kod

MailStoreExchange::RefreshGALUsingMAPI - Error in HrFindExchangeGlobalAddressList, result=0x80004005. You need to modify or add the following key:
HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem\Profiles\BlackBerryServer_MailStoreProfile\dca740c8c042101ab4b908002b2fe182
Check if you Client Access Server is listed in: 001e6602 If the dca740c8c042101ab4b908002b2fe182 key or the 001e6602 string is missing, stop the BlackBerry Mail Store Service, and create the missing key or string. Enter the Fully Qualified Domain Name of the correct Client Access Server or the pool name under Value data in 001e6602 Also, check if the string 001e6602 exists in:
HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem\Profiles\BlackBerryServer_MailStoreProfile\dca740c8c042101ab4b908002b2fe182
If not, create it or modify it to point at the correct CAS.

Labels: , ,