<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/8584375735658002348?origin\x3dhttp://webkod.blogspot.com', where: document.getElementById("navbar-iframe-container"), id: "navbar-iframe" }); } }); </script>

Updating Dynamic Distribution Groups in Exchange 2010

Monday, October 22, 2012 by kod

To configure a Dynamic Distribution Group in Exchange 2010, you can do it in two ways: 1. From EMC in Recipient Configuration > Distribution Group, right click on a existing Dynamic Distribution Group and select Properties. Go to Filter and Conditions tabs and select the appropriate settings. 2. From EMS you will only find a few conditions/filters that you can choose from in the GUI. So you will have to use EMS to fine tune your DDG. For example, if you want to filter the members of a Dynamic Distribution Group by city, you can use it to query users that have the City attribute assigned. To change the existing Dynamic Distribution Group which uses LDAP filter to use OPATH filter you use:
Set-DynamicDistributionGroup -Identity "GROUPNAME" -RecipientFilter {(Alias -ne $null -and City -like 'Bucharest') -and -not(Name -like 'SystemMailbox{*') -and -not(Name -like 'CAS_{*')}
All the users that have Bucharest as the City attribute will be members of this Distribution Group.

Labels: , , ,

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