Link to home
Start Free TrialLog in
Avatar of pramod1
pramod1Flag for United States of America

asked on

OFFICE 365, MESSAGE TRACE

can i trace message in office 365 with messaGE subject
Avatar of Sunil Chauhan
Sunil Chauhan
Flag of India image

you can try something like...

Get-MessageTrace -SenderAddress john@contoso.com -StartDate 06/13/2015 -EndDate 06/15/2015 | ? {$_.Subject -match "Subject string"}
Avatar of pramod1

ASKER

so there is nothing we can do in GUI,
Avatar of timgreen7077
timgreen7077

No unfortunately you can't trace based on subject using message trace in O365 via powershell of the GUI. Subject parameter isn't available.

https://docs.microsoft.com/en-us/powershell/module/exchange/mail-flow/get-messagetrace?view=exchange-ps
Avatar of pramod1

ASKER

in GUI i dont hav e option of subject message
You can not trace via the GUI or Powershell in message trace for O365. The parameter isn't available.
Avatar of pramod1

ASKER

Get-MessageTrace -SenderAddress john@contoso.com -StartDate 06/13/2015 -EndDate 06/15/2015 | ? {$_.Subject -match "Subject string"}

why have u put ? after  pipe option is it correct
? mean where-object .... :)
Avatar of pramod1

ASKER

one last question , if i dont know sender , can i receipent address john" contose.com
ASKER CERTIFIED SOLUTION
Avatar of Sunil Chauhan
Sunil Chauhan
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial