Exchange Server 2010 public folder - Events show in SharePoint 2010 Calendar

I want to fetch items to SharePoint 2010 Calendar from Exchange Server 2010 Public Folder Calendar called Event. How can I achieve this ?

May be you can directly fetch whole public folder in sharepoint server
http://www.amrein.com/apps/page.asp?Q=5778
If this helped you resolve your issue, please mark it Answered

Similar Messages

  • Exchange 2010 public folder not showing on exchange 20003 mailbox

    Hi,
    I have public folder on exchange 2003 and separate public folder on exchange 2010. On exchange 2010 user mailbox, I can see both 2003 and 2010 public folders. On exchange 2003 user mailbox, I can only see 2003 public folders. It is not the permission issue
    as I have given the user "owner" right and see not able 2010 public folder inless i move 2003 user mailbox to 2010 exchange.
    Appreciate if anyone could help me if to point me to directions or any hotfix I can run?
    Thank you very much.
    Pwint

    Are you using OWA or Outlook to view the public folders?
    If you're using OWA, the reason you can't see the folders is that OWA in Exchange 2003 uses WebDAV, which is no longer present in Exchange 2010.
    If you're using Outlook, you'll need to use the troubleshooting logs to determine the cause of the problems.
    It could be related to Outlook trying to connect directly to 2010 mailbox server instead of CAS. Because normally the mailbox server is installed without the CAS role, it does not allow a direct Outlook connection. Or it could be something else,
    like authentication.

  • "Exchange Server 2003" Public folder access within OWA

    Hello,
    I can connect to my exchange server 2003 (I know I have to upgrade) with OWA through an alias (webmail). After connecting in OWA, when I click a button in the navigation bar (contact, rules, ...), it's working OK except for public folders. When I click on
    public folders button, IE open a new window with this URL https://<netbios server name>/public instead of https://webmail/public. I googled around and found a thread explaining how this problem can be address by modifying navbar.js. But in my situation
    navbar.js and every other files located in ..\exchweb\control doesn't seem to be access anymore, they have been replaced by those here ..\exchweb\6.5.7651.60. There is no navbar.js in this folder but a vw_navbar.js. I can't find the code I have to modify like
    in navbar.js to to address the problem.
    Thanks for your help.
    Chris

    Hi Chris,
    This symptom can be caused if we enabled any redirection on /Public virtual directory. You can check the /Public settings and configuration files to remove the redirection. We can also reset the reset the default virtual directories as the KB introduced:
    http://support.microsoft.com/kb/883380
    Best Regards,
    Tracy

  • Exchange 2010 - Public Folder Managment

    I seem to have hit a bit of a stale mate with our exchange 2010 public folder management and while i think i see things set up wrongly - i'm not sure how to fix or what the consequences are if i did (and since i haven't yet built a sandbox test environment) i thought i would ask the spiceworks community for some helps and tips.So a little back ground first :two physical locations - one UK one USStretch DAGS with US-MBX replicating to UK-CAS and UK-MBX replicating to US-CASALL servers on the same domainProblem i am trying to resolve :One of our users based here in the UK travels to and manages some US staff now. US staff put holidays into a calendar in a public folder. The UK based manager would like to see this calendar.Sounds easy right? (maybe it is and i just need a clip around the napper with the manual).When i look at the public...
    This topic first appeared in the Spiceworks Community

    Are you using OWA or Outlook to view the public folders?
    If you're using OWA, the reason you can't see the folders is that OWA in Exchange 2003 uses WebDAV, which is no longer present in Exchange 2010.
    If you're using Outlook, you'll need to use the troubleshooting logs to determine the cause of the problems.
    It could be related to Outlook trying to connect directly to 2010 mailbox server instead of CAS. Because normally the mailbox server is installed without the CAS role, it does not allow a direct Outlook connection. Or it could be something else,
    like authentication.

  • Getting Error In Item Added Event In Event Receiver in SharePoint 2010

    Hi Guys,
    I have written Event Receiver in SharePoint 2010 On ItemAdded event of Document Library. Wants to increment a col value by reading maximum value first. I wrote below code but sometime it works correctly but some time I got below error: Document Set
    enabled on this document library and weh we added any document in any document set then this event occurred. I mentioned Code block and Error description both.
    Please see and suggest right solution.
    Code:
    public override void ItemAdded(SPItemEventProperties properties)
                    base.ItemAdded(properties);
                    SPListItem _currentItem = properties.ListItem;
                    string _QUERY = @"<Where><Eq><FieldRef Name='DocumentId'/><Value Type='Text'>21</Value></Eq></Where><OrderBy><FieldRef
    Name='RevisionReference' Ascending='False' /></OrderBy><ViewFields><FieldRef Name='RevisionReference' /></ViewFields><QueryOptions><Folder>DocumentLIBB/</Folder></QueryOptions>";
                    int maxID = 0;
                    string revisionreferencee = string.Empty;
                    using (SPWeb web = properties.OpenWeb())
                        SPList list = web.Lists["DocumentLIBB"];
                        SPQuery query = new SPQuery();
                        query.ViewAttributes = "Scope=\"Recursive\"";
                        query.Query = (_QUERY);
                        SPListItemCollection results = list.GetItems(query);
                     if (results.Count > 0)
                            SPListItem item = results[0];
                            revisionreferencee = item["RevisionReference"].ToString();
                            bool result = Int32.TryParse(revisionreferencee, out maxID);
                            _currentItem["RevisionReference"] = maxID + 1;
                            _currentItem["DocumentId"] = item["DocumentId"].ToString();
                    properties.ListItem.File.Update();
                    _currentItem.Update();
    Error Desc:
    <nativehr>0x81020015</nativehr><nativestack></nativestack>The file EKENg LIBB/QA_DOC_044/05-22 Emirates Engineering Occurrence_Error Investigation - MEDA Process - 27 AUG 2009-921.doc has been modified by SHAREPOINT\system
    on 27 Aug 2012 12:10:13 +0400.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Runtime.InteropServices.COMException: <nativehr>0x81020015</nativehr><nativestack></nativestack>The file EKENg LIBB/QA_DOC_044/05-22 Emirates Engineering Occurrence_Error Investigation - MEDA
    Process - 27 AUG 2009-921.doc has been modified by SHAREPOINT\system on 27 Aug 2012 12:10:13 +0400.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 

    Making the event synchronous (rather than the default) eliminates this error. If such a change suits your requirements you should consider it. You just have to tweak the elements.xml in your feature receiver project;
    http://blogs.msdn.com/b/unsharepoint/archive/2010/11/10/sharepoint-event-receivers-making-asynchronous-event-synchronous-to-avoid-save-conflict-error.aspx
    w: http://www.the-north.com/sharepoint | t: @JMcAllisterCH | c: http://www.b-i.com

  • Conflict between Client object model and Item Updated Event Receiver in sharepoint 2010

    Hello All,
    As per my requirement I have a two custom list.
    Agent Details
    Port Name
    Agent Details contains Agent code, Port Name,  email, address and phone of Agent. Its possible that one Agent Code is connected with multiple Port Name.
    Basically what I am doing is I am getting port name connected with Agent code, using jquery and bind those values with check box(using javascript created dynamically) and bind all with Div tag.
    Now when my custom edit form of Agent list open up it shows me different port name binding with checkbox group.
    when user select the check box and click confirm button my clicent object model script will run and add this selected value into Port Name list. 
    After confirm one more button named Save will enable asking user to edit the email, phone or address value and when I click on save my Item updated event fires which update the values of the selected port name(These port name I am getting from port
    name list) to Agent Details custom list.
    Now when I am trying to update the values my event receiver fires or some times it got stuck(not firing). So could you please help me the possible alternative for this requirements.
    Can we user the Ecma Script(Client object model to preserve the value of selectec port) and Item updated event receiver on the same time?
    Is anything am doing wrong then please guide me.

    Hi,
    As I understand, when you updated values in the agent details list the Item updated event receiver got stuck sometimes.
    The item update event receiver will fire after the item has been saved, and the client object model script or the Ecma Script runs before the item is saved, so there is no conflict between the client object model script and item update event receiver.
    You could find out the reason about the item update event receiver gets stuck by debugging the event receiver.
    When you want to debug your event receivers, you have to attach to OWSTIMER.EXE and wait till they are executed. You can control this behavior using the Synchronization attribute. Also, if you’re looking for an easy way to debug an event receiver without
    having to manually attach a debugger to your code, you can use the System.Diagnostics.Debugger.Launch() method.
    The articles below are about how to debug in the event receiver in SharePoint 2010.
    http://sharepoint-kings.blogspot.jp/2013/02/debugging-event-receivers-in-sharepoint.html
    http://chakkaradeep.com/index.php/event-receivers-in-sharepoint-2010/
    http://sharesaint.com/?p=77
    Best regards,
    Sara Fan
    TechNet Community Support
    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]

  • Migrate Exchange Server 2010 Public Folder shared calendars to Exchange Server 2013

    Dear All,
    I have an question about calendars under public folder migrating to new exchange server 2013. When completed the PF migration progress, will it also migrate calendars under sub-folder under PF to new PF mailbox?
    For example: in exchange 2010 PF:   
    In exchange 2013
               \Public Folder\sales\A1_calendar
              --->
               \ Public Folder\sales\A2_calendar 
    ---> ?
                \Public Folder\sales\A3_calendar 
    --->  ?
                \Public Folder\sales\A4_calendar 
    ---> ?
    Thanks in advance.
    Regards,
    Willis Wong

    Hi Willis,
    This forum is for general questions and feedback related to Outlook. Since your question is more related to Exchange server, I'd recommend you post a new question in the Exchange forum for further assistance:
    https://social.technet.microsoft.com/Forums/office/en-US/home?category=exchangeserver
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    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]

  • Exchange Server 2010 Public Folder Error!

    I found that no one can sent email to our mail-enable public folder. there's a warning like below
    Delivery has failed to these recipients or groups:
    ([email protected]) <[email protected]>
    There's a problem with the recipient's mailbox. Please try resending the message. If the problem continues, please contact your helpdesk.
    Diagnostic information for administrators:
    Generating server: EXCHUB02.domain.com
    [email protected]
    #550 5.2.0 STOREDRV.Deliver: The Microsoft Exchange Information Store service reported an error. The following information should help identify the cause of this error: "MapiExceptionNotFound:16.18969:B8000000,
    17.27161:0000000054000000000000000000000000000000, 255.23226:2B0A0000, 255.27962:44000000, 255.17082:BFF9FFFF, 0.25697:00000000, 4.21921:BFF9FFFF, 255.27962:FA000000, 255.1494:35000000, 255.26426:96000000, 4.18236:BFF9FFFF, 4.7974:BFF9FFFF, 255.1750:43000000,
    0.26849:43000000, 255.21817:BFF9FFFF". ##
    Original message headers:
    Received: from EXCMAIL02.domain.com ([fe80::7c57:574e:f764:e8f7]) by
     exchub02.domain.com ([::1]) with mapi; Mon, 7 Apr 2014 15:47:55 +0700
    Content-Type: application/ms-tnef; name="winmail.dat"
    Content-Transfer-Encoding: binary
    From: "Admin" <[email protected]>
    To: <[email protected]>
    Subject: sdasd
    Thread-Topic: sdasd
    Thread-Index: Ac9SPhG67LrxITcEQjufincOJHZGwg==
    Date: Mon, 7 Apr 2014 15:47:55 +0700
    Message-ID: <[email protected]>
    Accept-Language: en-US
    Content-Language: en-US
    X-MS-Has-Attach:
    X-MS-TNEF-Correlator: <[email protected]>
    MIME-Version: 1.0
    Did you guys know what happen to my public folder? cause i can't find the right solution for my problem.

    Please check out the below thread related to your query.
    http://social.technet.microsoft.com/Forums/en-US/exchangesvradmin/thread/c1fab3bd-589d-4c7c-8807-2eda93d11c27/
    Hope it helps

  • Exchange 2003 to 2010 Public folder Migration issue

    I have successfully replicated our Exchange 2003 public folders to our exchange 2010 public folders using the addreplica script in exchange 2010 PS. I have moved all mailboxes to use the public folders on Exchange 2010.  A couple of days ago I ran the
    "moveallreplicas.ps1", and the command successfully ran and has removed all replica pointers in the exchange 2010 PF database pointing to the exchange 2003 database. In Exchange 2003 ESM, I still have the replication to all the PF databases, and
    the 2k3 has not been removed, nor has the public folder instances folder count changed at all. In searching through the logs I am getting this error on the exchange 2003 event viewer for applications about every minute or less. 
    This is an SMTP protocol log for virtual server ID 1, connection #58254. The client at "xxx.xxx.xxx.xxx" sent a "xexch50" command, and the SMTP server responded with "504 Need to authenticate first  ". The full command
    sent was "xexch50 1076 2".  This will probably cause the connection to fail. 
    The client IP indicated in the error is a Exchange 2010 server with the HUB/CAS roles loaded onto it. I am not sure if this is related or not.
    I see some people have ran the move all replicas from the Exchange 2003 ESM, should I do that now? Is this even something to worry about since all my mailboxes are using the PF on 2010?
    Thanks for any assistance!

    I have looked at KB http://support.microsoft.com/?id=843106 and
    it did not resolve the issue on the Exchange 2003 server or 2010. 
    Last night I put in the fix for the Event ID 36885, method three of this article http://support.microsoft.com/kb/933430/en-us,
    and the errors on both servers seemed to go away, but then have started back up this morning after about seven hours of no errors. I thought the registry entry would fix the issue, and it appears it did, but not sure why it would come back like this. I may
    try restarting the servers tonight, but kind of confused how this could still be an issue with the registry entry in place. 

  • Exchange 2010 Public folder database size grown upto 1.22TB

    I have situation to discuss , have three exchange public folder server with 2010Ent edt. One of Pub folder dtabase has been reached 1.22TB . Problem is that we cant increase more storage as its reached over limit. We are unable to do backup as its need to
    split in multiple chunk . I cant do offline defrag as if now casue of LUNs limit.
    Do someone has such sitaution faced and have any recommendation is this ? I can do create a new PF database. More over I am looking some short of solution to split whole database in two part hosted by two PUB server and each database just do content replication
    with each hosting own database on each server.Will really appriciate for any good suggestion. I am open for all other possibilities.
    Saty

    I have executed whole project to move from 2010 to 20103. Public folder was a big pain. It was 3 copy of 1.32 TB. Plan started from implementation of Archiving tool for exchange.
    1- First level pulled all detail reports for PF name,size last access time ,update time ,type9 mail enable or normal.
    2- Pull the report and calculate the free white space with all calculation of individual server wise, and get the actual data size ,
    3- Target to one PF server holding passive copy of public folders (Not Master copy)
    4- Target the public folder keeping 0KB size and create script to delete in non recurs mode so only folders which has size 0 will be delete and rest all be left just like that .
    5- later target the folder size keeping huge data and foliter it out with root folder and check out the permission and reach out people if the really need the data .Get the sign off and delete it through recurs script.
    If you not put recurs delete it will never allow to delete whole folder in one way.
    6- Target folder which data are important and move them to shared mailbox . Using soem restore tool which can export pst of those folder and import into mailbox. Set the permission accordingly. And set Enterprise erchiving policy for that shared.Same above
    two exercise need to apply for all public folders.
    7- Target those folders which are in use and try to convince and move them to shared mailbox with unlimited mailbox size with EV archiving.
    8- And at the end move replica of target server to master copy.
    9- Once replica move is complete you can plan to delete the PF data edb file. It wont allow to delete directly as you have to go through ADSIEDIT method only.
    10- while same exercise need to do for all other passive copy.
    11- Create a fresh edb and now you can move pf replica content to new edb which will help to move actual data with very limited whitespace.
    12- And this way whole PF will be in actual size and all junk and unwanted files/data/emails/meetings etc will be removed.
    13- There will be one common issue of form created through outlook so you need to import them carefully using default system folder.

  • Exchange 2010 Public Folder Calender

    My current environment is an Exchange 2010 Server where we have many people out in the field that use OWA.
    I have a user that wants to be able to send and receive email and invitations via a Public Folder Calender. And have her users be able to check the green check mark to accept an appointment/invitation or red X to reject and so on. The Public Folder Calender
    is mail enabled but still does not give the full options as a normal  mailbox would.
    I dont even think this is a possible option but want to be certain.
    Thanks.

    Hi tspilker,
    Thank you for your question.
    Could you tell me any options which are missing?
    Or could you tell us which functions didn’t achieve?
    I suggest you send a snapshot with detail description to
    [email protected] for our troubleshooting.
    If there are any questions regarding this issue, please be free to let me know.
    Best Regard,
    Jim

  • Exchange 2010 - public folder replication

    Hi there.
    Exchange 2010 SP3 (CU 8v2).
    We would like to rid of the replication public folder messages.
    Is it safe to delete those folders and they Will be automatically recreated?
    We would like to get rid of those errors before we plan migration of PF to Exchange 2013 PF's.
    with best regards
    bostjanc

    Hi,
    To get rid of these warnings, I suggest to Removing and re-adding the replica for the affected public folders. To remove and add replica for server, please use this script:
    RemoveReplicaFromPFRecursive.ps1 –TopPubicFolder <\folder> –Server toRemove <servername>
    AddReplicatoPFRecursive.ps1 –TopPulblicFolder <\folder> -ServerToAdd <servername>
    Note: Scripts are found at %SystemDrive%\Program Files\Microsoft\Exchange Server\v14\Scripts. To run a script, type the following in the Exchange Management Shell:
    [PS] C:\>cd $exscripts
    [PS] C:\Program Files\Microsoft\Exchange Server\Scripts>.\ RemoveReplicaFromPFRecursive.ps1
    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

  • Unable to send to Exchange 2010 Public Folder after migration

    Hi ,
    We have migrated exchange 2003 server to 2010 and we migrated all public folders to new exchange 2010 server. But when attempting to send an e-mail to public folder 's e-mail address It says #550 5.2.0 RESOLVER.PF.Invalid; misconfigured public folder mailbox
    ##. Have you got any idea ? We can see all public folders in outlook client and owa.
    Regards.

    Hi,
    First, please verify if the public folders have replicated successfully, check item counts between replicas. You can use the get-publicfolderstatistics command.
    Besides, I recommend you try to mail-disable it and then mail-enable back to check the result.
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • Decommissioning Exchange 2010 Public Folder servers

    I have 4 Exchange 2010 SP3 RU6 Public Folder servers. I need to get rid of 2 of them so I can re-use the hardware. The 2 I need to get rid of are replication partners (one replicates to the other) and only have about 5GB of PF data. I want to move the data
    to the other 2 Public Folder servers (they are replication partners with each other). Those 2 servers have about 200GB of PF data. Do I just run .\MoveAllReplicas.ps1 -Server OldServer -NewServer NewServer on 1 server since it has the same data as the other
    one? I am just trying to figure out how to get the data from the 2 "old" PF servers (it is the same data since 1 replicates to the other) to the 2 newer ones which are the main PF servers (again, one replicates to the other). Also, this command won't
    erase what is already on the newer servers, right? I assume it will just add to the existing.
    Jason
    HDL

    Hi,
    You need to replicate public folder firstly, after you make sure the public folder replication is completed, you can use the .\MoveAllReplicas.ps1 to move all replicas to the server that you want to keep.
    Replicating public folders won't remove the existing public folders.
    You will have to run  .\MoveAllReplicas.ps1 -Server OldServer -NewServer NewServer command on both server, this command actually remove the public folder replicas on the old Exchange server. If you don't remove public folders replicas on the old
    server, you won't remove pulic folder database successfully.
    Best regards,
    Belinda Ma
    TechNet Community Support

  • Exchange 2013 shell mailbox move requests showing up on 2010 hub server

    We're in the process of migrating from exchange 2010 to 2013. All servers are patched and up to date. We have two 2010 CASs (one for external OWA use only) and a mailbox cluster. Our exchange 2013 setup is almost a mirror with the exceptions of how the exchange
    server roles have changed.
    Any new-moverequest commands entered from the either of our exchange 2013 CAS servers fail to show up in the EAC/recipients/migration page.
    If the local move request is done in the EAC the batch(es) show up just fine.
    The more perplexing part is: while I was going through a 2010 hub (looking for a different issue) I noticed ALL the batches/mailbox moves that weren't showing up in the 2013 EAC were listed in the 2010 move request section.
    I can't get any info on the moves in the 2010 console (because they're 2013 jobs) but i can get statistics and such from a 2013 shell.
    any ideas?

    Are you running ex2013SP1 CU6? Can you try to update n check?
    Thanks, MAS
    Please mark as helpful if you find my comment helpful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you.

Maybe you are looking for

  • Updated Iphone 6 to 8.1.1 and have lost the ability to connect to wi-fi.  What can I do to fix this problem?

    After downloading 8.1.1, can no longer connect to wi-fi.  The phone sees the wi-fi, but, does not connect.  I have tried rebooting the phone, tried turning the wi-fi off and back on.  What other steps can I take to fix this?

  • Line Item in PO

    hi Within my Purchase  REQ, i have a item which doesnt have aitem number but has a description, and when i go and create my PO it says no item exists. I cannot understand, why cannot i see the item number, it is blank but the text of the item is avai

  • Pre query , post query where date = mon-yyyy

    I have a tabular block B2 with many records this block items are vouhcerno, voucherdate. voucherno number(6) and voucherdate date. when new form instance i execute query it shows me all the records working fine. I add one list item here when new form

  • PROMPT(SELECTINPUT, ...) and user defined dimensions

    Hi, I created a custom package that should enable the user to select members of  the TIME, Account and Category dimensions and also members of some user defined dimension called "Costcent". After that, a scriptlogic file should be called. I tried: 1)

  • CD only lists as track numbers

    Why do the cd's I make with an eclectic playlist show up as track numbers on other computers (and mine as well) and when i receive other people's cds they show up as track numbers also?   Is there a way to make sure your song lists stay with the cd?