Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Auto Accept Meeting Requests User Mailboxes

186 views
Skip to first unread message

Scott F

unread,
Aug 14, 2008, 4:08:01 PM8/14/08
to
Is anyone aware of any method to allow a user mailbox to automatically
process meeting requests Exchange 2007?

Thanks in advance for your assistance.
--
Scott

Scott F

unread,
Aug 14, 2008, 4:34:04 PM8/14/08
to
Want to add - I am looking for a way to process meeting requests
automatically using Free/Busy information - accept if no conflict, reject if
conflict, and a way to get by the security that requires I allow the script
to send an email on my behalf using the script I found below:

Sub AutoAcceptMeetings(oRequest As MeetingItem)

If oRequest.MessageClass <> "IPM.Schedule.Meeting.Request" Then
Exit Sub

Dim oAppt As AppointmentItem
Set oAppt = oRequest.GetAssociatedAppointment(True)

Dim oResponse
Set oResponse = oAppt.Respond(olMeetingAccepted, True)
oResponse.Display

End Sub

--
Scott

Steven

unread,
Aug 14, 2008, 4:59:48 PM8/14/08
to
If the mailbox is a shared mailbox and therefore you set the recipient type as Room and not User, you can use Set-MailboxCalendarSettings to set AutomateProcessing to AutoAccept.

Is that what you're looking for?

Scott F

unread,
Aug 14, 2008, 5:25:01 PM8/14/08
to
It is not a resource mailbox or shared, it is a user mailbox. I understand
the autoaccept functionality of Exchange 2007 for a resource mailbox but
would like to be able to accomplish the same functionality on a user mailbox.

Thank you for the response.
--
Scott

0 new messages