[Exchange] RE: Reporting on who has rules

2017-06-15 Thread Senter, John
=== Find forward rules === $mydata = @() foreach ($i in (Get-Mailbox -ResultSize unlimited)) { $Result = Get-InboxRule -Mailbox $i.DistinguishedName | where {($_.ForwardTo) -and ($_.ForwardTo -like "*smtp:*")} $mydata += ($Result | select-object -property @{Name="UserName";Expression={(get-user

[Exchange] RE: Reporting on who has rules

2017-06-15 Thread Miller Bonnie L.
Thanks so much John, I'll give this a go! From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On Behalf Of Senter, John Sent: Thursday, June 15, 2017 8:33 AM To: exchange@lists.myitforum.com Subject: [Exchange] RE: Reporting on who has rules === Find forward rules ===

[Exchange] RE: Reporting on who has rules

2017-06-15 Thread Miller Bonnie L.
Thanks Michael, I'd forgotten about that one but checked and we do have that option disabled in our default owa policy. Thanks to John too for posting the scripts, looks like we're in the clear. From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On Behalf Of Michael

[Exchange] RE: Reporting on who has rules

2017-06-15 Thread Michael B. Smith
Also be aware that, by default, via OWA Options, people can set their ForwardingSmtpAddress. From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On Behalf Of Miller Bonnie L. Sent: Thursday, June 15, 2017 11:59 AM To: exchange@lists.myitforum.com Subject: [Exchange] RE:

[Exchange] Reporting on who has rules

2017-06-15 Thread Miller Bonnie L.
Exchange 2013, I've been asked to create a report on who has mailbox rules enabled that might do a redirect to an external e-mail account (due to a targeted phishing attack, to make sure something isn't in place that we don't know about). I've never had to do anything like this before, anyone