Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Question
Friday, June 1, 2012 4:57 PM
Our Environment: Exchange Server 2007, Outlook 2010 (32)
A user wants a rule that will automatically DECLINE meeting invites from specific users, and send a specified response message back to the invitee. Can anyone help? My research tells me that I need to set up a rule which includes a script. Not sure if this is the best way, and if so, I need help with the script.
Thanks!
All replies (5)
Monday, June 4, 2012 9:09 AM ✅Answered
Hi,
According to your description, how about creating the following rule:
Apply this rule after the message arrives
from people or public group
and which is a meeting invitation or update
reply using a specific template
and delete it
Sincerely
Rex Zhang
Rex Zhang
TechNet Community Support
Wednesday, June 6, 2012 5:24 AM ✅Answered | 1 vote
The script code can be found here:
Please Note: Since the following web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
http://www.slipstick.com/outlook/calendar/autoaccept-a-meeting-request-using-rules/
Best regards,
Rex Zhang
TechNet Community Support
Tuesday, June 5, 2012 3:47 PM | 1 vote
Hi Rex. Thank you for your reply. I have tried to create the rule you suggest, but we need the meeting to be Automatically Declined, which is why we need a script to perform this action. The rule I have created is as follows:
Conditions and Actions:
Apply this rule after the message arrives
from people or public group
and which is a meeting invitation or update
and on this computer only
reply using a specific template
and run [Project1.AutoDeclineMeetings]
I'm struggling to figure out how to create a script that will automatically decline the meeting. Any help you can give would be greatly appreciated!
Thanks!
Tuesday, February 25, 2014 10:32 PM
I have the same question, but I was hoping that you would provide a rule that DECLINES. The two urls you posted both indicate ACCEPT. Got one for DECLINE?
Friday, October 21, 2016 6:33 PM | 1 vote
Look closer at the website and it shows you how to modify the script to decline the meeting:
To decline a meeting, replace olMeetingAccepted with olMeetingDeclined:
Set oResponse = oAppt.Respond(olMeetingDeclined, True)
~alex