Allow user to enable/disable reminders on all received meetings

G

Guest

Right now the meeting organizer determines whether a meeting requests
includes a reminder alert. Some users want reminders and some don't. I
should be able to say I want reminders on all meeting requests I receive, or
that I want no reminders on any meeting requests I receive.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/com...c2dfd&dg=microsoft.public.outlook.calendaring
 
M

Milly Staples [MVP - Outlook]

Then select that option when you receive the meeting request. Just uncheck
any reminder or put one in.

--
Milly Staples [MVP - Outlook]

Post all replies to the group to keep the discussion intact. Due to
the (insert latest virus name here) virus, all mail sent to my personal
account will be deleted without reading.

After furious head scratching, Qalvin asked:

| Right now the meeting organizer determines whether a meeting requests
| includes a reminder alert. Some users want reminders and some don't.
| I should be able to say I want reminders on all meeting requests I
| receive, or that I want no reminders on any meeting requests I
| receive.
|
| ----------------
| This post is a suggestion for Microsoft, and Microsoft responds to the
| suggestions with the most votes. To vote for this suggestion, click
| the "I Agree" button in the message pane. If you do not see the
| button, follow this link to open the suggestion in the Microsoft
| Web-based Newsreader and then click "I Agree" in the message pane.
|
|
http://www.microsoft.com/office/com...c2dfd&dg=microsoft.public.outlook.calendaring
 
G

Guest

That's what I already do and I find it quite tedious. Are you're saying that
instead of me being able to set Outlook to "add reminder to all incoming
meeting requests" and be done with it I need to monitor every meeting request
I get, and instead of just selecting accept/tentative/decline I need to open
it and see if there's a reminder on it and change it if it's not how I want
it? That seems like the kind of manual work computers are supposed to keep
me from having to do.

Wanting reminders or not is inherently an attribute of the meeting
recipient, not the meeting organizer. I find that people either want to be
reminded of their meetings or they don't, regardless of who organized the
meetings. I'd like to be able to tell Outlook that I want to be reminded of
the meetings I need to attend and forget about it, without having to manually
monitor the meeting requests.
 
D

Diane Poremsky [MVP]

what version of outlook? I think Ol2003 removes reminders on received emails
(but maybe it only applies to mail, not meetings.)

--
Diane Poremsky [MVP - Outlook]
Author, Teach Yourself Outlook 2003 in 24 Hours
Coauthor, OneNote 2003 for Windows (Visual QuickStart Guide)
Author, Google and Other Search Engines (Visual QuickStart Guide)



Join OneNote Tips mailing list: http://www.onenote-tips.net/
 
G

Guest

I found a solution, but it's certainly not elegant. Add the following
VisualBasic script:

Sub ForceSetReminder(Item As Outlook.MeetingItem)
If (False = Item.ReminderSet) Then
Item.ReminderSet = True
Item.GetAssociatedAppointment(False).ReminderMinutesBeforeStart = 15
End If
'MsgBox "Meeting request arrived: " & Item.Subject
End Sub

and create a rule to run it when an appointment arrives. I still don't know
why something like this isn't a basic option in Outlook.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top