Calendar Groups for Events

I had in the past created two "categories" in Calendar: one for "Home" and one for "Work" ... I thought I recently created a new one called "School" - there seems to be a drop-down arrow in front of the colored box for "School" that does nothing. I'm unable to use "School". I then tried to edit it or use it or create something new and now there's a new "category" called "Untitled 2" which I CAN use .... how do I get rid of "Calendars" I don't on "On My Mac" and use ones I do want? Also, can I select the color or are the colors pre-assigned?  Also, I "subscribed" to "Birthday Calendar" but don't have any idea how to use it, activate it, add to it....

Hi,
Outlook.exe /cleanreminders switch will clear and regenerate reminders.
Does this problem occurred for just one user?
I suggest the following several methods to check this issue.
Open outlook with command: outlook.exe /cleanviews, this command will restore default views. All custom views you created are lost.
Switch outlook to online mode.
Check in OWA.
Best Regards.
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
Lynn-Li
TechNet Community Support
Thanks for your replies.  The reservation I have around the /cleanreminders switch is that effectively, the notifications are fine (they appear when they should) - but it's the underlying appointment which isn't showing (unless the reminder pops up
and you open the item). Will the reminders be regenerated if the actual appointment doesn't appear?  Or will they disappear too?
Only one user gets these notifications, he created the appointments in the shared calendar.  The notificiations and the appointments don't show in OWA  - I'd expect the same with Outlook in online mode.
The worst thing to happen is lose all trace of these appointments.
Kind Regards,
Paul

Similar Messages

  • Publish Calendar Group and events location lost

    After publish the Calendar Group, which may contain more than one individual calendar and coded in different colors correspondingly, the published online view of the calendar group shows only one color. Is there a design fault in this? Shouldn't the published Calendar group retain the original individual calendar colors?
    Also, the published calendar, individual events lost their locations. When I publish the calendar I checked the box for title and notes. There is nowhere for checking the location. Is this the reason for not publishing the location? Please correct the design. Thanks.

    I'm also wondering why iCal event locations and URLs don't appear in a published (via .Mac) calendar. When I click on an event, I get Subject, Date, and Summary info (which is equivalent to the Notes field). It does not show the Location or URL field, however.
    Any ideas on how to get this information on a published calendar?

  • Can I make a calendar group for my iCloud calendars?

    I have several calendars in my iCloud account - one of which I use to keep track of my time card information at work and I have to print it out every payday. When I print that calendar I need to de-select all of the other calendars. I wanted to make a "New Calendar Group" to house the rest of them so that I could de-select all of them at once. It seems like the only place I can create a Calendar Group is "On My Mac". Am I doing something wrong?

    You can do this using a meta refresh but the problem is you have to add it to the html file for the page very time you publish changes.
    A better way is to create a splash page and upload it to the server outside of the folder produced by iWeb. Example HERE.
    The meta refresh is added to the head section of the html file...
    <meta http-equiv="refresh" content="32;url=http://www.domain.about.com/Page-Name.html">
    The delay time in seconds is marked in blue and the URL to the redirect page is in red.

  • Default Calendar Group for Communications Express?

    When using the soon to be eliminated Calendar Express (cshttpd) interface, it is possible to select a default calendar group. This causes the application to always display a calendar group after logging in rather than the user's individual calendar.
    Does anyone know if it is possible to set such a preference in the Communications Express (uwc) interface?

    UWC does not provide you this feature.You could raise an enhancement request -RFE .
    Thanks,
    Ramya

  • Calendar Reminders for events that don't appear in Calendar

    Hi,
    We have a user who created a number of calendar appointments for a shared Calendar.  He receives reminders for these, but the appointments don't appear in the shared calender (or his calendar) and no other members of his team who have access to the
    calendar receive the reminders.  When the reminder pops up, he can view the appointment and it appears normal - it just doesn't show in the calendar.
    The appointments are very important and we need to somehow restore the corresponding calendar entries so that they're viewable to him and his team, and reminders are recieved by everyone.
    I'm aware of the /cleanreminders switch but can't find anything to allay my fears that these reminders won't be seen as "rogue" and deleted leaving us with no record of the reminders.
    I've used the scanpst tool against the ost files he uses, although I've been advised the scan may need to be run several times so waiting to schedule this in with the user.
    Worst case scenario is that the reminders are accidently deleted and there is no record of these at all, at least at the moment, one person receives these so they're not running completely blind.
    Anyone else had this or have any ideas?
    Thanks,
    Paul

    Hi,
    Outlook.exe /cleanreminders switch will clear and regenerate reminders.
    Does this problem occurred for just one user?
    I suggest the following several methods to check this issue.
    Open outlook with command: outlook.exe /cleanviews, this command will restore default views. All custom views you created are lost.
    Switch outlook to online mode.
    Check in OWA.
    Best Regards.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Lynn-Li
    TechNet Community Support
    Thanks for your replies.  The reservation I have around the /cleanreminders switch is that effectively, the notifications are fine (they appear when they should) - but it's the underlying appointment which isn't showing (unless the reminder pops up
    and you open the item). Will the reminders be regenerated if the actual appointment doesn't appear?  Or will they disappear too?
    Only one user gets these notifications, he created the appointments in the shared calendar.  The notificiations and the appointments don't show in OWA  - I'd expect the same with Outlook in online mode.
    The worst thing to happen is lose all trace of these appointments.
    Kind Regards,
    Paul

  • Calendar-notifications for events in the past

    Since iOS 7, my notifications for an calendar-event in the notification center are gone, if i'm checking them to late. Is it possible to change the settings, so I can see them, until I'm going to delete them?
    If not, is there an alternative calendar-app with push notifications I can use instead?
    Thanks for an answer.

    Hello Ryan,
    I created a small demo which could make the scenario: the event mesage could be delayed:
    using System;
    using System.Collections.Generic;
    using System.Diagnostics;
    using System.Linq;
    using System.Text;
    using System.Threading;
    using System.Threading.Tasks;
    namespace P20150409
    class Program
    static void Main(string[] args)
    EventLog myNewLog = new EventLog("Application", ".", "dotNET Sample App");
    myNewLog.EntryWritten += new EntryWrittenEventHandler(MyOnEntryWritten);
    myNewLog.EnableRaisingEvents = true;
    while (true)
    System.Threading.Thread.Sleep(3000);
    string EventWriteTime = DateTime.Now.ToString();
    Console.WriteLine("Log is written at" + EventWriteTime);
    myNewLog.WriteEntry("Test message written at" + EventWriteTime + " " + System.Threading.Thread.CurrentThread.ManagedThreadId, EventLogEntryType.Information);
    Console.WriteLine();
    Console.ReadLine();
    private static void MyOnEntryWritten(object sender, EntryWrittenEventArgs e)
    System.Threading.Thread.Sleep(6000);
    Console.WriteLine("EntryWritten event is fired at" + DateTime.Now.ToString());
    Console.WriteLine("Log time is" + e.Entry.Message);
    Console.WriteLine();
    This is the result:
    As we can see that the interval between event fired time and the current written time is bigger and bigger, so it could be that an event is fired 2 year later...And for reason, we can see that it is becuase i set the event sleep 6s whenever it
    is fired. So i am wondering in your event, there is a similar feature which causes this delay.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Creating iCal groups for iCloud

    Is there any way to create a new calendar group for the iCloud? When I create a new group in iCal, it only creates it on my Mac, and I can't see any options of creating a new group in the iCloud calendars. Are "Home" and "Work" the only options for iCloud iCal?
    We're trying to set up our iCal on our Mac to sync using iCloud with our iPad and iPod.

    Hi All,
    I don't think SPRO---Logistics general -Material master- Tools --- Maintain authorization and authorization profiles is the right path to create new authorization groups.
    Can anyone explain how to create new authorization groups for different material types. The purpose is to create a role and assign this auth. group to this role and provide that security role to specific users.
    Regards
    Shane

  • Chaging a group of event's category/calendar

    How can I change a group of events in one calendar/category to another calendar without having to do each one individually.
    Somehow all my business events are now personal events and would lihe to change them all back as a group and not one-by-one.
    Can this be done? ....I hope!

    Jack,
    When you return to view the answers, please mark responses appropriately. Simply login and select the value you desire for applicable responses. As the author of the original question, you may assign a helpfulness value to responses. Please use the following when rating a response:
    None: The response was simply a point of clarification to my original question or didn't really help.
    Helpful: This response helped with a portion of my question, but I still need some additional help.
    Solved: This response has solved my problem completely.
    WHY SHOULD I DO THIS?
    In short, here are 3 reasons why it's worth a few moments of your time:
    1) Other members have taken time out of their day to assist you, so please take a moment to give them credit for the assistance they have provided.
    2) Your rating not only helps your peers earn points toward their status in Discussions, but validates the quality of the solution you've received.
    3) Other readers will be able determine which response(s) helped solve the original question, which will greatly enhance the knowledge and experience for all community members and visitors.
    ;~)

  • Problem Synching SunOne Calendar group Events to outlook

    Is it possible to synch SunOne calendar group events to Outlook Calendar. We are running Calendar 5.1 and Outlook 2003 and 2007. The group entries are not picked up in outlook. eventually we want group events to be picked up on Blackberry and other PDA devices. Any thoughts?

    smitty99n wrote:
    Is it possible to synch SunOne calendar group events to Outlook Calendar.What release of the sync software are you using or are you using the Outlook Connector software?
    Can you clarify what you mean by 'calendar group' events.
    We are running Calendar 5.1Are you sure about this version number, this is a very old version of Calendar?
    What does "showrev -p | grep ics" tell you re: calendar patch number?
    and Outlook 2003 and 2007. The group entries are not picked up in outlook. eventually we want group events to be picked up on Blackberry and other PDA devices. Any thoughts?For syncing information to Blackberry & Other PDA advices you would probably be best looking at a syncml solution. Synchronica provide syncml software.
    Regards,
    Shane.

  • In ical I just added new calendars to a pre-existing calendar group, I can make events with these calendars, but not reminders, any suggestions?

    in ical I just added new calendars to a pre-existing calendar group, I can make events with these calendars, but not reminders, any suggestions?

    Hi,
    Lion has changed the way reminders (todos as was) work. They now seem to need to be in a seperate calendar.
    In iCal open the File menu and select New Reminder List... and select where to put it.
    Best wishes
    John M

  • How to change calendar setting for one event in a repeating series?

    Is there any way to change the calendar setting (color) for a single event in a repeating series without changing the color of all events in that series? It seems one event in a repeating series is linked to all other events in that series even if you change the time and/or date first.
    The only workaround I've found is to create a new event Identical to the event in question except with the different calendar, then delete the original event. This would be a lot easier if the OS would ask the user if s/he wants to apply the calendar change to all future events or just this one. Or if there was a way to more easily duplicate a single event, that would also save me a lot of time.
    Thanks for any responses.

    The assignment of colors to calendars on your iPad is pretty simplistic. You can set a color for each calendar and all events (repeating or single instance) placed in a calendar use the calendar's color; however, you cannot set a color for one instance of a calendar event. The workaround you came up with is similar to the method I use. I have a calendar labeled "Priority Events" (Red) that I use for important instances of standing meetings. Oftentimes I leave the event in question in the calendar and simply place a priority event in the same time slot; it clutters up the calendar a bit but helps me visually.

  • After syncing and updating my iphone my iCalendar on my computer lost most of my information. Including wiping out an entire calendar group.  When trying to readd the calendar group it won't let me add events to my calendar under that category.

    After syncing and updating my iphone my iCalendar on my computer lost most of my information. Including wiping out an entire calendar group.  When trying to readd the calendar group it won't let me add events to my calendar under that category. A message pops up that says: "You can't add events or to do items to a calendar group. Select an individual calendar in the calendar list, then create your events or to do items." Any help here would be greatly appreciated! I would like to either retrieve the old information or find a way to add the category back in to start over. Thanks in advance!

    hi i had the same problem today when i updated my itunes to latest version. however, i have just found my songs in the 'itunes media' folder. this was accessed through 'my music'  then keep clicking through until you find itunes media and all my library songs were in there and i then just added these files to my library and all were restored however, i have lost all my playlists but at least my 700 songs are back. very dissapointed with apple that they have let this happen with their latest update, the previous version was miles better than this one . hope you find them. stevo

  • Have duplicate events on my calendar. For example,

    Have dupliate events on my ical.  Recently added icloud to mac.  How do I remove duplicates, should I create a new calender? If so, How?

    See if this helps: iCloud- Resolving duplicate calendars after setting up your calendar application for iCloud Calendar

  • My iphone has calendar history for 10 years.  my icloud only shows about 6-8 weeks back.  how can i get icloud to show all the calendar events in the past that are on iphone?

    my iphone has calendar history for 10 years.  my icloud only shows about 6-8 weeks back.  how can i get icloud to show all the calendar events in the past that are on iphone?

    I encountered a similar problem when finally (and with much regret) I was obliged to migrate my MobileMe to iCloud last month.
    Many years of iCal history vanished without trace during this automated transition by Apple and iCloud then kindly synched the resulting vacuum back to iCal on my Mac.
    Fortunately, iCloud wasn’t able to decimate iCal on my other Macs because (1) they are still running Snow and (2) I had switched them off as a precaution.  Good job I did.
    My solution was to export my iCal data on one of those other Macs to a backup file – then I imported that backup file into my Lion-updated Mac’s iCal. That restored all the iCloud-deleted iCal data back on to my Mac and this was promptly synched automatically to my Calendar on iCloud.  So now it’s all there and showing.
    Perhaps you could do something similar?  In the meantime, be very careful not to let iCloud’s amnesia get synched to your iPhone (and other devices).
    Experience has taught me never to trust an “upgrade” until it is proven to be working correctly and always to keep in reserve another Mac with a properly-functioning system and all synching to it switched off...

  • I updated to ios 7 2 days ago and I synced with my computer for the first time yesterday. Most of my calendar appts and events were wiped off my phone but are still on the computer. I use outlook 2010 and a pc running windows 7.

    I updated my iphone 5 to  ios 7 two days ago and I synced with my computer for the first time yesterday. Most of my calendar appointments and events were wiped off my phone but are still on the computer. I use outlook 2010 and a pc running windows 7. Rebooting the phone and the computer failed to remedy the calendar sync problem.

    Easy solution for restoring lost calendar informaiton, thank goodness.  On your iPhone, go to settings, then to iCloud.  If your Calendar selection is turned off,  turn it on.  Your info should restore.  If your Calendar selection is turned on, then turn it off.  Choose to save calendars when asked.  After it shuts the Calendar off, turn it back on.  Your info should be restored.
    Thank you to Apple support for walking me through this.  Shame on you Apple for not just telling people about this easy fix rather than making us go through all of this pain and worry.
    - JT

Maybe you are looking for

  • How to hook up Power Mac G4 to my i.Mac

    Been browsing through discussions and Apple stuff, talked to support techs at Apple Care (with less than desired results), but still need help on how to do this. Here's what I want to do: Get step-by-step instructions on how to hook up an "old" (thin

  • Problem connecting a 6310i to a CARK-112 car kit

    Hi, I'm trying to connect a 6310i to my CARK-112 car kit. The Nokia phone detects the car kit as "Carkit 112" but when I hit select to pair with it I do not get the option to enter a passcode, instead it displays "device not available" The car is sec

  • Issue with Java and VB 6

    I have a VB 6 application accessing java component through Active X Bridge. When i try to set -Xmx for JRE more than 160MB on machine with 2GB of memory "The Java runtime environment cannot be loaded" error message occurs, Java component is not loade

  • Trying to track down process bound to port ucp/513

    A security audit has detected one of our Solaris 8 servers(Generic_117350-38) has udp port 513 open. I've verified this using nmap and can even see it in netstat output, but can't track down which process is the culprit. # netstat -an UDP: IPv4    Lo

  • Turning Off Optical Zoom Lens Movement Noise When ...

    Hi all dont know who knows this already but ive found a way to turn the noise off when filming a video and zooming with optical zoom..... i went into my profiles choose silent and simply turned "warning tones" off when i recorded a video and zoomed u