Hi Readers,
With the advent of Exchange 2010 we have got the new feature of setting OOO thru powershell.
Setting Up out of office by Exchange shell:
Set-MailboxAutoReplyConfiguration -identity “Vikassukhija@Labtest.com” –AutoReplyState Scheduled –StartTime “06/30/2014” –EndTime “07/02/2014” –ExternalMessage “Thanks for your mail. I am out-of-office and do not have access to mails. I will return on 02nd July 8 PM CST. If your matter is urgent, please drop you email to sukhija@labtest.com” -InternalMessage “Thanks for your mail. I am out-of-office and do not have access to mails. I will return on 02nd July 8 PM CST. If your matter is urgent, please drop you email to sukhija@labtest.com”
Removing Out of office by Exchange Shell:
Set-MailboxAutoReplyConfiguration “Vikassukhija@Labtest.com” –AutoReplyState Disabled –ExternalMessage $null –InternalMessage $null
You can also utilize Get-MailboxAutoReplyConfiguration -Identity “Vikassukhija@Labtest.com” to check the OOO that has been setup.
Regards
Sukhija Vikas
