How can I make Outlook automatically accept Mtg Requests?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to find a way to make Outlook automatically accept meeting invites
when they come from a specified sender. If possible without replying to the
sender. Isee the steps in rules to detect the incoming invite but don't see
away to accept the request. I have some experience with VBA in Excel and
Access but have never used it in outlook. Would VBA or some type of Outlook
script allow me to accomplish this?

Thanks
Tom G.
 
Check out this KB article to see how to run a VBA macro when a defined rule
is triggered:

How to create a script for the Rules Wizard in Outlook:
http://support.microsoft.com/default.aspx?scid=KB;en-us;q306108

You can then use the MeetingItem object to get the AppointmentItem object
that you will use to accept the meeting:

GetAssociatedAppointment Method [Outlook 2003 VBA Language Reference] --
Outlook (Microsoft Office Outlook 2003 Visual Basic Reference):
http://msdn.microsoft.com/library/e...sociatedAppointment_HV05247485.asp?frame=true
 
Eric,

Thanks! That worked great. Is there any way to eliminate the security
warning that is generated. When it sends the acceptance notice. The pop-up
warns me that another program is trying to send an e-mail on my behalf. Can
I prevent that only on this specific macro so that it doesn't compromise
overall security.

Tom G.

Eric Legault said:
Check out this KB article to see how to run a VBA macro when a defined rule
is triggered:

How to create a script for the Rules Wizard in Outlook:
http://support.microsoft.com/default.aspx?scid=KB;en-us;q306108

You can then use the MeetingItem object to get the AppointmentItem object
that you will use to accept the meeting:

GetAssociatedAppointment Method [Outlook 2003 VBA Language Reference] --
Outlook (Microsoft Office Outlook 2003 Visual Basic Reference):
http://msdn.microsoft.com/library/e...sociatedAppointment_HV05247485.asp?frame=true

--
Eric Legault (Outlook MVP, MCDBA, old school WOSA MCSD, B.A.)
Try Picture Attachments Wizard for Outlook:
http://www.collaborativeinnovations.ca
Blog: http://blogs.officezealot.com/legault/


Tom G. said:
I need to find a way to make Outlook automatically accept meeting invites
when they come from a specified sender. If possible without replying to the
sender. Isee the steps in rules to detect the incoming invite but don't see
away to accept the request. I have some experience with VBA in Excel and
Access but have never used it in outlook. Would VBA or some type of Outlook
script allow me to accomplish this?

Thanks
Tom G.
 
Sorry, there's a litte extra that you have to do with Outlook 2003 when you
use macros that are run from a rule:

Microsoft Outlook "Object Model Guard" Security Issues for Developers:
http://www.outlookcode.com/d/sec.htm#runascriptrule

--
Eric Legault (Outlook MVP, MCDBA, old school WOSA MCSD, B.A.)
Try Picture Attachments Wizard for Outlook:
http://www.collaborativeinnovations.ca
Blog: http://blogs.officezealot.com/legault/


Tom G. said:
Eric,

Thanks! That worked great. Is there any way to eliminate the security
warning that is generated. When it sends the acceptance notice. The pop-up
warns me that another program is trying to send an e-mail on my behalf. Can
I prevent that only on this specific macro so that it doesn't compromise
overall security.

Tom G.

Eric Legault said:
Check out this KB article to see how to run a VBA macro when a defined rule
is triggered:

How to create a script for the Rules Wizard in Outlook:
http://support.microsoft.com/default.aspx?scid=KB;en-us;q306108

You can then use the MeetingItem object to get the AppointmentItem object
that you will use to accept the meeting:

GetAssociatedAppointment Method [Outlook 2003 VBA Language Reference] --
Outlook (Microsoft Office Outlook 2003 Visual Basic Reference):
http://msdn.microsoft.com/library/e...sociatedAppointment_HV05247485.asp?frame=true

--
Eric Legault (Outlook MVP, MCDBA, old school WOSA MCSD, B.A.)
Try Picture Attachments Wizard for Outlook:
http://www.collaborativeinnovations.ca
Blog: http://blogs.officezealot.com/legault/


Tom G. said:
I need to find a way to make Outlook automatically accept meeting invites
when they come from a specified sender. If possible without replying to the
sender. Isee the steps in rules to detect the incoming invite but don't see
away to accept the request. I have some experience with VBA in Excel and
Access but have never used it in outlook. Would VBA or some type of Outlook
script allow me to accomplish this?

Thanks
Tom G.
 
Back
Top