To view the Dynamic Distribution Group ??™ s members, assign a variable to the
Get-DynamicDistributionGroup cmdlet for the designated group. Each
DynamicDistributionGroup object has a RecipientFilter property, which indicates
the group membership criteria. Next use the Get-Recipient cmdlet with the -Filter string
to return the members of the Dynamic Distribution Group:
$ExchDDG = Get-DynamicDistributionGroup -Identity ???ExchDDG???
Get-Recipient -Filter $ExchDDG.RecipientFilter
Bulk Recipient Management
Thus far you have seen how to create and modify various Recipient objects in Exchange Server 2007.
Often, however, there is need to create or modify multiple objects at the same time or provide reporting
from various objects. In earlier versions of Exchange, most operations of this kind were accomplished
using scripts, bat files, or tools specifically for bulk editing such as Admodify. When it comes to working
with multiple objects in Exchange Server 2007, most operations are fairly easy to perform from the
Exchange Management Shell, sometimes in a single - line shell command. The pipeline can be used
effectively to redirect the output of one command into another. For complex bulk management
operations, scripts can also be used based on the Exchange Management Shell.
In this section, you explore scenarios where you can use the Exchange Management Shell to perform
bulk operations.
Pages:
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228