Link to home
Start Free TrialLog in
Avatar of Jorge Ocampo
Jorge OcampoFlag for United States of America

asked on

Create exchange account rules

i need to create a autoreply for all emails by rules i do not have the users password and resetting the password is not an option i also dont want to set a mailboxAutoReply since that only sends one outreply, also no transport rules

Just regular user rules to do the reply via exchange shell
Avatar of Joshua Grantom
Joshua Grantom
Flag of United States of America image

Exchange 2013
Set-MailboxAutoReplyConfiguration -Identity user@company.com -AutoReplyState Enabled -ExternalMessage "external autoreply" -InternalMessage "internal autoreply"

Exchange 2010
Set-MailboxAutoReplyConfiguration user@company.com -AutoReplyState enabled -ExternalAudience all -InternalMessage "internal autoreply" -ExternalMessage "external autoreply"
Avatar of Jorge Ocampo

ASKER

Hey Joshua,

i cant do set-mailboxautoreply because it only replys once its by design.

im trying to set using "Set-InboxRule"

any thoughts?
Hey Jorge,

Unfortunately it is not possible with New-InboxRule or Set-InboxRule

http://www.experts-exchange.com/Programming/Languages/Scripting/Powershell/Q_28125972.html
any way around the one reply only per user?
What you can do is give yourself Full Access to everyones mailbox and use OWA to login to their Outlook and setup rules.

Opening other Mailboxes
http://help.outlook.com/en-us/140/bb899681.aspx

Setting Inbox rules in OWA
https://support.office.com/en-US/Article/Use-rules-in-Outlook-Web-App-to-automatically-forward-messages-to-another-account-1433e3a0-7fb0-4999-b536-50e05cb67fed
wouldnt that require the client to always be on or we owa do the rule all the time?
I believe it will run the rule all the time but I could be wrong
you cant do auto reply on owa rules
ASKER CERTIFIED SOLUTION
Avatar of Joshua Grantom
Joshua Grantom
Flag of United States of America 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