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

Updating Dynamic Distribution Groups in Exchange 2010

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

“Updating Dynamic Distribution Groups in Exchange 2010”