Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Message Tracking Question

Status
Not open for further replies.

Whitemtntn

IS-IT--Management
Nov 6, 2000
161
0
0
US
I need to find all the emails from a particular domain during a time period. We don't know the specific email addresses. So far- it seems (amazingly) that wildcards are not supported. There must be a way to do this?
This is the command- is there anything you can add to "domain.com" to get those results? Thanks....

get-messagetrackinglog -Sender "domain.com" -EventID "RECEIVE" -Start "10/25/2009 12:47:00 PM" -End "11/7/2009 12:57:00 PM
 
We figured it out. The answer is this...

get-messagetrackinglog -Server "ourExch2007" -Start "10/25/2009 9:34:00 AM" -End "11/6/2009 9:44:00 AM" -resultsize unlimited |where {$_.Sender -like "*@domain.com"}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top