Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Outlook / Calendaring / February 2008

Tip: Looking for answers? Try searching our database.

Rules for auto accepting meeting invitations

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Steve Vincent - 10 Jan 2008 22:11 GMT
In Outlook 2003, can I set up rules to automatically accept meeting requests
from specific individuals?  And another question:  can I set up a rule to
automatically remove appointments from a meeting cancellation?

Thanks in advance,

Steve
Diane Poremsky [MVP] - 11 Jan 2008 16:08 GMT
yes, create a rule looking for meeting requests and use run a script as the
action.

place this code in ThisOutlookSession and use it for the script.

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

Signature

Diane Poremsky [MVP - Outlook]
Author, Teach Yourself Outlook 2003 in 24 Hours
Need Help with Common Tasks? http://www.outlook-tips.net/beginner/
Outlook 2007: http://www.slipstick.com/outlook/ol2007/

Outlook Tips by email:
dailytips-subscribe-request@lists.outlooktips.net

Outlook Tips: http://www.outlook-tips.net/
Outlook & Exchange Solutions Center: http://www.slipstick.com
Subscribe to Exchange Messaging Outlook newsletter:
EMO-NEWSLETTER-SUBSCRIBE-REQUEST@PEACH.EASE.LSOFT.COM

> In Outlook 2003, can I set up rules to automatically accept meeting
> requests
[quoted text clipped - 4 lines]
>
> Steve
Steve Vincent - 11 Jan 2008 18:56 GMT
Diane,

Thank you, that works great!  (I had to add an End If before the End Sub,
though ;-)   I notice that it enters a Tentative appointment on the calendar
and doesn't generate a reply, and with cancellations, it leaves the appt on
the calendar, although it's marked "Cancelled".  But these are probably good
things -- too much automation would leave me flying blind and not noticing
the changes to my calendar.

Thanks again!  Your code was right on the money.
Steve

> yes, create a rule looking for meeting requests and use run a script as the
> action.
[quoted text clipped - 23 lines]
> >
> > Steve
Dan G - 28 Feb 2008 19:01 GMT
Thanks for this code.  I'm actually forwarding requests from my client email
to my company email so I have them on both calendars.  Because of that, I'm
not interested in sending a response to the Meeting Organizer (and because it
prompts for the security warning).  Is there anyway to just add the meeting
to my calendar without trying to send a repsonse?

> yes, create a rule looking for meeting requests and use run a script as the
> action.
[quoted text clipped - 23 lines]
> >
> > Steve
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.