Link to home
Start Free TrialLog in
Avatar of -pH
-pH

asked on

authenticated sender req. in exchange

i am fairly inexperienced with the exchange powereshell, does anybody know of a cmd i can run in exchange to show/spit out a report with users/distro groups in AD who require that all senders are authenticated
ASKER CERTIFIED SOLUTION
Avatar of 0x6
0x6

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
Avatar of 0x6
0x6

The above commands will export all the entries to the text files specified (ReqAuth.txt, ReqAuth_DL.txt)

This will sort it by name:
Get-mailbox -Sortby Name |Select Name, RequireSenderAuthenticationEnabled
Get-DistributionGroup -Sortby Name |Select Name, RequireSenderAuthenticationEnabled

For a single user:
Get-mailbox -id alias | Select Name, RequireSenderAuthenticationEnabled

Avatar of -pH

ASKER

worked perfect. thanks.
Your Welcome. I am glad that it worked out for you. Please award points.

Regards,
Avatar of -pH

ASKER

sorry... thought i did this already!