Categories: Setup & privacy :

Support IPM.Appointment.MP in Calendar Sync

Showing 1-17 of 17 messages
Support IPM.Appointment.MP in Calendar Sync ashkan21 6/16/09 7:28 AM Currently Google Calendar Sync will not sync Outlook items that have the message class of "http://IPM.Appointment.MP'.  This message class is created by the Cisco MeetingPlace plugin for Outlook, which allows the user to create MeetingPlace meetings directl
Re: Support IPM.Appointment.MP in Calendar Sync dnelliott 6/18/09 10:02 AM I had only 140 of these meeting types in my calendar, so it's clearly not all MeetingPlace events that are affected. I found that I could open each of these meetings, save them without making changes, and the message class reset to IPM.Appointment. I
Re: Support IPM.Appointment.MP in Calendar Sync ashkan21 6/18/09 3:55 PM Well from everything i've experienced and all of the other posts i'v read from others, anything other than IPM.Appointment will not sync to Google Calendar.
Re: Support IPM.Appointment.MP in Calendar Sync onesaint 9/8/09 9:59 AM I ran into this same issue but I too appear to have layers of sync issues. At this point Google Calendar Outlook Sync is unreliable and unusable with my corporate email. PLEASE FIX to allow additional message classes.
Re: Support IPM.Appointment.MP in Calendar Sync Mike718 9/22/09 6:04 AM Seconded.  Not being able to view my work calendar on my G1 phone via Google Calendar Sync has turned the phone from nearly indispensable to a nearly worthless investment.
Re: Support IPM.Appointment.MP in Calendar Sync Haje Korth 10/13/09 1:58 PM I second the request above. It is hard to trust your google calendar knowing that 30% of the entries are missing.
Re: Support IPM.Appointment.MP in Calendar Sync onesaint 11/4/09 9:21 PM Great comment Haje. I don't use Google Calendar because syncing is unreliable without IPM.Appointment. I have no idea of the impact and I can't risk losing all of my business appointments. Otherwise, I would love to use it. It would make it so nice t
Re: Support IPM.Appointment.MP in Calendar Sync Jahmon 11/16/09 7:09 AM This is the main reason why I hate Google Sync. Most of my business meetings are not synced, making my Google calendar pretty useless...
Re: Support IPM.Appointment.MP in Calendar Sync derekmartin 1/15/10 10:14 AM I think I have managed to solve this. I put the following VBScript in the ThisOutlookSession VBA Module (google this if it sounds confusing to you or to get directions to opening this module in the Visual Basic Editor).  It changes the message class
Re: Support IPM.Appointment.MP in Calendar Sync Badger98 1/20/10 7:22 AM From my experience, Live Meeting appointments that others create sync fine with my Google Calendar.  It's the Live Meeting appointments that I create that won't sync.  Does someone else's Live Meeting invite show up as IPM.Appointment in my Outlook c
Re: Support IPM.Appointment.MP in Calendar Sync derekmartin 1/25/10 10:27 AM Oops.  Found a bug in my script.  Change this line: If (Item.MessageClass <> WantedMC) Then to this: If (StrComp(Item.MessageClass,WantedMC,1) <> 0) Then http://IPM.Appointment.MP was matching IPM.Appointment with the simple <> operator.
Re: Support IPM.Appointment.MP in Calendar Sync derekmartin 1/26/10 1:04 PM Ok.  The above script doesn't appear to work after all, since some meetings are still getting through with the http://IPM.Appointment.MP message class.  Any Visual Basic gurus out there see why?
Re: Support IPM.Appointment.MP in Calendar Sync lonestar.maps 3/17/10 6:54 AM I see the same behavior with the Live Meeting add-in for Outlook.  I'm not sure how to check the type of appointment for that, but when I open the item in Outlook is shows as a "Conference Request" as opposed to a "recurring meeting."  Literally half
Re: Support IPM.Appointment.MP in Calendar Sync Laurentdb 4/21/10 7:23 AM In powershell, $olApp =  new-object -comobject "Outlook.Application" $namespace = $olApp.GetNamespace("MAPI") $fldCalendar = $namespace.GetDefaultFolder(9) $items = $fldCalendar.Items foreach($item in ($items | ? {$_.MessageClass -ne "IPM.Appoint
Re: Support IPM.Appointment.MP in Calendar Sync fstrange 7/22/10 12:22 AM In another post i found link to "DocMessageClass" utility (Windows), which actually did the trick via a GUI. It worked for me. A script will off-course continue to run and fix the issue for future appointments as well, but just for your information.
Re: Support IPM.Appointment.MP in Calendar Sync onesaint 11/30/10 1:56 PM I've been limping along with some work-arounds. But I noticed Outlook reverts back to the http://IPM.Appointment.MP setting in properties. Does anyone know what causes Outlook to change it back? I know reinstalling the MP Outlook plugin will do this. Here
Re: Support IPM.Appointment.MP in Calendar Sync baxist 8/9/12 1:18 AM thanks for the code. this small modification works for me:     ' ############################# ' # Google Sync ANFANG ' #############################