A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook - Calandaring
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Rules for auto accepting meeting invitations



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old January 10th 08, 10:11 PM posted to microsoft.public.outlook.calendaring
Steve Vincent
external usenet poster
 
Posts: 10
Default Rules for auto accepting meeting invitations

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
Ads
  #2  
Old January 11th 08, 04:08 PM posted to microsoft.public.outlook.calendaring
Diane Poremsky [MVP]
external usenet poster
 
Posts: 12,991
Default Rules for auto accepting meeting invitations

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

--
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:


Outlook Tips:
http://www.outlook-tips.net/
Outlook & Exchange Solutions Center: http://www.slipstick.com
Subscribe to Exchange Messaging Outlook newsletter:



"Steve Vincent" wrote in message
...
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


  #3  
Old January 11th 08, 06:56 PM posted to microsoft.public.outlook.calendaring
Steve Vincent
external usenet poster
 
Posts: 10
Default Rules for auto accepting meeting invitations

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

"Diane Poremsky [MVP]" wrote:

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

--
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:


Outlook Tips:
http://www.outlook-tips.net/
Outlook & Exchange Solutions Center: http://www.slipstick.com
Subscribe to Exchange Messaging Outlook newsletter:



"Steve Vincent" wrote in message
...
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


  #4  
Old February 28th 08, 07:01 PM posted to microsoft.public.outlook.calendaring
Dan G
external usenet poster
 
Posts: 3
Default Rules for auto accepting meeting invitations

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?

"Diane Poremsky [MVP]" wrote:

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

--
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:


Outlook Tips:
http://www.outlook-tips.net/
Outlook & Exchange Solutions Center: http://www.slipstick.com
Subscribe to Exchange Messaging Outlook newsletter:



"Steve Vincent" wrote in message
...
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


 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Outlook 2007 - Accepting Meeting Invitations that I Organize varlene Outlook - Calandaring 2 December 1st 07 12:47 AM
Auto accepting meeting requests Capt_Ron Outlook - Calandaring 2 July 3rd 07 07:54 PM
Meeting Room - Not automatically accepting invitations ShaneUK20 Outlook - Calandaring 9 April 13th 07 03:34 PM
auto accepting meeting invitations field216 Outlook - Calandaring 1 March 7th 07 04:44 PM
Auto accepting invitations Courtneyf04 Outlook - Calandaring 0 December 20th 06 05:14 PM


All times are GMT +1. The time now is 07:17 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.