Link to home
Start Free TrialLog in
Avatar of LB1234
LB1234

asked on

We have a public folder in Exchange 2007 that we need to autoaccept meeting requests. How to accomplish?

We have a public folder in Exchange 2007 that we need to autoaccept meeting requests.  How to accomplish?
Avatar of Jdtuck
Jdtuck
Flag of United States of America image

For room/resource mailbox you can set it with below command.

Set-MailboxCalendarSettings “RoomMailbox” -AutomateProcessing:AutoAccept

But if it user mailbox then you can not.

First to find the pros & cons, convert user mailbox to room and set automateprocessing and convert it back to room to user mailbox which keeps the calendar processing settings AutoAccept. You need to run this from Exchange Server.

Set-Mailbox “User” -Type Room

Set-MailboxCalendarSettings “User” -AutomateProcessing:AutoAccept

Set-Mailbox “User” -Type Regular
Avatar of LB1234
LB1234

ASKER

The calendar in question isn't a mailbox per se, it's just a public folder set up as a calendar.  Do we have to delete this and use the mailbox you mention above?
Avatar of LB1234

ASKER

But if we set it up as a private user, and not a public folder, how would people know what times are available without first opening up the calendar?
ASKER CERTIFIED SOLUTION
Avatar of Jdtuck
Jdtuck
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