Message Tracking Logs
Can you enter wildcards for the recipients? What I'm trying to do is use a command similar to this; Get-MessageTrackingLog -ResultSize Unlimited -Start "7/28/2006 8:00AM" -End "7/28/2006 5:00PM" -recipient *@contoso.com Thanks, D
January 23rd, 2009 10:29pm

Hi D,Use client side filtering, can you try this? :)Get-MessageTrackingLog -ResultSize Unlimited -Start "7/28/2006 8:00AM" -End "7/28/2006 5:00PM" | where{$_.recipient -like "*@contoso.com"}Amit Tank | MVP - Exchange | MCITP:EMA MCSA:M | http://ExchangeShare.WordPress.com
Free Windows Admin Tool Kit Click here and download it now
January 23rd, 2009 11:16pm

It should be Get-MessageTrackingLog -ResultSize Unlimited -Start "7/28/2006 8:00AM" -End "7/28/2006 5:00PM" | where{$_.recipients -like *@contoso.com} missing a "s". :) Thanks, Elvis
January 26th, 2009 5:30am

I'll give it a try. Thanks, D
Free Windows Admin Tool Kit Click here and download it now
January 26th, 2009 9:45pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics