Home > sharepoint 2010 > correlation error sharepoint 2010

Correlation Error Sharepoint 2010

Contents

for me as a developer is that whenever you bump into an error message – you’ll be presented with a correlation ID token. In this article I will try to explain how you can fetch that token from SharePoint, and also provide a small 404 error in sharepoint 2010 snippet of code to be able to build your own “Log Searcher Web Part” for your 403 forbidden error in sharepoint 2010 administrators. What is a Correlation ID in SharePoint? In SharePoint 2010, you get a Correlation ID (which is a GUID) attached to your logs/error

Sharepoint 2010 Error 503

messages when something happens. This ID can then be used to lookup that specific error from the logs. This Correlation ID is used per request-session in SharePoint 2010, and if you are in the process of requesting some information from

Sharepoint 2010 Error 503 Central Administration

SharePoint and bump into some problems along the way – your Correlation ID will be the best starting point for searching for what went wrong along that request! You might get an error message like this in SharePoint 2010 (don’t worry, if you haven’t seen one like this one yet – just hang in there, sooner or later you will ;-) Search for the log messages based on the Correlation ID token So if you’ve gotten such an error message sharepoint 2013 correlation id viewer and want to find out more information about the actual error and don’t have the time to go around poking in the logs and searching – there’s a few methods you can do this rather easily, as described below. Using PowerShell to lookup a log message based on Correlation ID token One of the quick-n-awesome ways to do this is to simply hook up a PowerShell console (SharePoint 2010 Management Shell) and then just write the following command (replace the with the Correlation Id): get-splogevent | {$_.Correlation -eq "GUID" } This will give you the details about your specific error like this in the console: You might want to be more precise and get more specific details out of your query, then you can try something like this: get-splogevent | {$_.Correlation -eq "GUID"} | select Area, Category, Level, EventID, Message | Format-List This will give you the details about your specific error like this with some juicy details: Finally if you would want these messages to be put into a text or log file instead, you could just add the classic “> C:Awesome.log” after the command like this: get-splogevent | {$_.Correlation -eq "GUID"} | select Area, Category, Level, EventID, Message | Format-List > "C:\Awesome.log" On MSDN they have an overvoew of using SP-GetLogEvent which I would recommend! Using SQL queries to find log message based on Correlation ID token You can utilize the SQL logs database to fe

(עברית)المملكة العربية السعودية (العربية)ไทย (ไทย)대한민국 (한국어)中华人民共和国 (中文)台灣 (中文)日本 (日本語)  Home20132010Other VersionsLibraryForumsGallery Ask a question Quick access Forums home Browse forums users FAQ Search related threads Remove From My Forums Answered by: Troubleshooting with correlation ID SharePoint

Sharepoint Log Directory

> SharePoint 2010 - Setup, Upgrade, Administration and Operations Question 0 sharepoint 2013 correlation id log Sign in to vote Hello! Tell me please how to use corellation id for find error description sharepoint correlation id log location in Sharepoint 2010? Thanks! Wednesday, November 25, 2009 10:15 AM Reply | Quote Answers 4 Sign in to vote There're several ways to use Correlation ID. For example, https://zimmergren.net/sp-2010-find-error-messages-with-a-correlation-id-token-in-sharepoint-2010/ use Management Shell (Windows PowerShell).The simplest way maybe just use notepad. In Windows Explorer, navigate to C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS, and open the newest log in the folder using a text editor. Use Find function in the text editor to locate the correlation id.For example, my machine name is SHAREPOINT, current date https://social.technet.microsoft.com/Forums/office/en-US/7995ebae-4322-4795-99e3-50ed0b1e89cc/troubleshooting-with-correlation-id?forum=sharepointadminprevious and time is 11:58 11/25/2009,  then the log name is: SHAREPOINT-20091125-1151.log. By default, every 30 mins, a new log file is generated. You can find recent events there. Marked as answer by livetdv Friday, November 27, 2009 8:18 AM Wednesday, November 25, 2009 8:01 PM Reply | Quote All replies 4 Sign in to vote There're several ways to use Correlation ID. For example, use Management Shell (Windows PowerShell).The simplest way maybe just use notepad. In Windows Explorer, navigate to C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS, and open the newest log in the folder using a text editor. Use Find function in the text editor to locate the correlation id.For example, my machine name is SHAREPOINT, current date and time is 11:58 11/25/2009,  then the log name is: SHAREPOINT-20091125-1151.log. By default, every 30 mins, a new log file is generated. You can find recent events there. Marked as answer by livetdv Friday, November 27, 2009 8:18 AM Wednesday, November 25, 2009 8:01 PM Reply | Q

for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company Business http://sharepoint.stackexchange.com/questions/9938/what-is-the-point-of-the-error-message-correlation-id-in-sharepoint-2010 Learn more about hiring developers or posting ads with us SharePoint Questions Tags Users Badges Unanswered Ask Question _ SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. Join them; it only takes a minute: Sign up Here's how it works: Anybody can ask a question Anybody can answer The best answers are voted up and rise to the top What is the point of the Error Message Correlation ID sharepoint 2010 in Sharepoint 2010 up vote 7 down vote favorite This might sound noob but it's pretty annoying. Instead of receiving a nice error message, SharePoint 2010 throws you a page saying that there is an error and it gives you a Correlation ID. WTF is a Correlation ID. What can I do to find out the exact error that actually occurred? It seems like we've returned to the good old win98 days where the error in sharepoint error was 0x80002330. 2010 share|improve this question edited May 5 at 10:38 Aakash Morya 3,3903626 asked Mar 4 '11 at 7:56 Mihai Lazar 106311 add a comment| 6 Answers 6 active oldest votes up vote 14 down vote accepted You can use the ULS logs in the 14-hive/logs, and search for the correlation ID. You will then get all messages related to that correlation ID. You can either look through the text file, or use the ULS Viewer. Alternatively, you can execute e.g. this Powershell command to get the messages with this correlation id: Get-SPLogEvent | ?{$_.Correlation -eq "YOUR-CORRELATION-ID-HERE"} | ft Category, Message -Autosize share|improve this answer answered Mar 4 '11 at 8:57 tarjeieo 1,91512036 1 One caveat to this method is that it will peg resources to the max. On our prod server this took us to 99% utilization, and we had to cancel the query after 5 minutes, no result yet. –Tom Halladay Jul 28 '11 at 15:17 3 Also, for us newbies who don't have the 14-hive location memorized, it's: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS –Tom Halladay Jul 28 '11 at 17:35 1 Tom; Yes, that's definitively something to be vary of. You can limit the search interval by time though, by adding starttime and endtime parameters, example: Get-SPLogEvent -StartTime "12

 

Related content

an unexpected error has occurred sharepoint 2010 sp1

An Unexpected Error Has Occurred Sharepoint Sp table id toc tbody tr td div id toctitle Contents div ul li a href An Unexpected Error Has Occurred Sharepoint New Site Collection a li li a href Sharepoint Sp Installation Guide a li li a href Sharepoint Sp Version Number a li li a href Sharepoint Sp End Of Support a li ul td tr tbody table p be down Please try the request again Your cache administrator is webmaster Generated Sun Oct GMT by s hv squid p p Help Receive Real-Time Help Create a Freelance Project Hire for a

an unexpected error has occurred sharepoint 2010 user profile service

An Unexpected Error Has Occurred Sharepoint User Profile Service table id toc tbody tr td div id toctitle Contents div ul li a href Sharepoint An Unexpected Error Has Occurred Web Parts Maintenance Page a li li a href Sharepoint User Profile Service Application Error a li li a href Sharepoint User Profile Service Not Synchronizing a li li a href Sharepoint User Profile Service Account Permissions a li ul td tr tbody table p HomeOnline Other VersionsRelated ProductsLibraryForumsGallery Ask a question Quick access relatedl Forums home Browse forums users FAQ an unexpected error has occurred sharepoint new site collection

content deployment sharepoint 2010 error

Content Deployment Sharepoint Error table id toc tbody tr td div id toctitle Contents div ul li a href Content Deployment Sharepoint Step By Step a li li a href Content Deployment Sharepoint a li li a href Sharepoint Content Deployment Wizard a li li a href How To Deploy Wsp In Sharepoint Using Powershell a li ul td tr tbody table p Microsoft Tech Companion App Microsoft Technical Communities Microsoft Virtual Academy Script Center Server and Tools relatedl Blogs TechNet Blogs TechNet Flash Newsletter TechNet p h id Content Deployment Sharepoint Step By Step p Gallery TechNet Library TechNet

crawl status error sharepoint 2010

Crawl Status Error Sharepoint table id toc tbody tr td div id toctitle Contents div ul li a href Sharepoint Crawl Store Db Too Large a li li a href Sharepoint Crawl Schedule Best Practice a li li a href Sharepoint Crawl Log a li ul td tr tbody table p Microsoft Tech Companion App Microsoft Technical Communities Microsoft Virtual Academy Script Center Server and Tools Blogs TechNet Blogs relatedl TechNet Flash Newsletter TechNet Gallery TechNet Library TechNet Magazine sharepoint crawl rules TechNet Subscriptions TechNet Video TechNet Wiki Windows Sysinternals Virtual Labs Solutions Networking sharepoint crawl stuck starting Cloud and

creating custom error page sharepoint 2010

Creating Custom Error Page Sharepoint table id toc tbody tr td div id toctitle Contents div ul li a href How To Create Custom Webpart In Sharepoint a li li a href Sharepoint Custom Error Page a li li a href Sharepoint Custom a li li a href Custom Access Denied Page Sharepoint a li ul td tr tbody table p Page Not Found and p h id How To Create Custom Webpart In Sharepoint p Access Denied in SharePoint x x x x x x x x x x x x x x x fabdulwahab outlook comOctober how to

custom error in sharepoint 2010

Custom Error In Sharepoint table id toc tbody tr td div id toctitle Contents div ul li a href Custom Action In Sharepoint a li li a href Sharepoint Custom Action Print a li li a href Sharepoint Custom Action Rights Mask a li ul td tr tbody table p Name r n t t r n t t t Groups r n t t r n t t r n t t GroupHtmlBlock Item viewAllHtmlBlock Text linkHtmlBlock Name searchResultItemHtmlBlock Name viewMoreText and MoreText more document ready function Core GroupNavigation SetMenuItems ctl ctl header fragment cee cd ctl ctl ParentGroupListContainer

custom error message in sharepoint 2010

Custom Error Message In Sharepoint table id toc tbody tr td div id toctitle Contents div ul li a href Custom Webpart In Sharepoint a li li a href Custom Action In Sharepoint a li li a href Sharepoint Custom Action Print a li ul td tr tbody table p LakhaniSeptember Posting this snippet so that I can always find it when I need it To relatedl debug a SharePoint solution you need to custom error page in sharepoint set following values in web config Turn on the call stack p h id Custom Webpart In Sharepoint p CallStack true

custom error page sharepoint 2010

Custom Error Page Sharepoint table id toc tbody tr td div id toctitle Contents div ul li a href Custom Webpart In Sharepoint Using Visual Studio a li li a href Custom Workflow In Sharepoint a li ul td tr tbody table p soon Ruby coming soon Getting Started Code Samples Resources Patterns and Practices App Registration Tool Events Podcasts Training API Sandbox Videos Documentation Office relatedl Add-ins Office Add-in Availability Office Add-ins Changelog Microsoft Graph sharepoint custom access denied page API Office Connectors Office REST APIs SharePoint Add-ins Office UI Fabric Submit custom master page in sharepoint to the

custom error page in sharepoint 2010

Custom Error Page In Sharepoint table id toc tbody tr td div id toctitle Contents div ul li a href Custom Master Page In Sharepoint a li li a href Custom Webpart In Sharepoint Using Visual Studio a li li a href How To Create A Page In Sharepoint a li ul td tr tbody table p soon Ruby coming soon Getting Started Code Samples relatedl Resources Patterns and Practices App Registration Tool sharepoint custom access denied page Events Podcasts Training API Sandbox Videos Documentation Office Add-ins Office p h id Custom Master Page In Sharepoint p Add-in Availability Office

custom error pages in sharepoint 2010

Custom Error Pages In Sharepoint table id toc tbody tr td div id toctitle Contents div ul li a href Custom Webpart In Sharepoint Using Visual Studio a li li a href Custom Action In Sharepoint a li li a href Sharepoint Custom Action Multiple Selected Items a li li a href Sharepoint Custom Action Print a li ul td tr tbody table p soon Ruby coming soon Getting Started Code Samples Resources Patterns and Practices App Registration relatedl Tool Events Podcasts Training API Sandbox Videos Documentation Office custom webpart in sharepoint Add-ins Office Add-in Availability Office Add-ins Changelog Microsoft

dashboard designer sharepoint 2010 unexpected error

Dashboard Designer Sharepoint Unexpected Error table id toc tbody tr td div id toctitle Contents div ul li a href Sharepoint Dashboard Designer Tutorial a li li a href Sharepoint An Unexpected Error Has Occurred Web Parts Maintenance Page a li li a href An Unexpected System Error Has Occurred Additional Details Have Been Logged For Your Administrator a li ul td tr tbody table p here for sharepoint dashboard designer cannot connect to performancepoint services a quick overview of the site Help Center p h id Sharepoint Dashboard Designer Tutorial p Detailed answers to any questions you might have

enterprise search center sharepoint 2010 error

Enterprise Search Center Sharepoint Error table id toc tbody tr td div id toctitle Contents div ul li a href Hosted Sharepoint Enterprise a li li a href Sharepoint Enterprise Requirements a li li a href Sharepoint Enterprise Product Key a li ul td tr tbody table p for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us relatedl Learn more about Stack Overflow the company Business Learn more about sharepoint enterprise keywords search hiring developers or posting ads with us SharePoint

enterprise search center error sharepoint 2010

Enterprise Search Center Error Sharepoint table id toc tbody tr td div id toctitle Contents div ul li a href Hosted Sharepoint Enterprise a li li a href Sharepoint Enterprise Requirements a li li a href Sharepoint Enterprise Product Key a li ul td tr tbody table p Microsoft Tech Companion App Microsoft Technical Communities Microsoft Virtual Academy Script Center Server and Tools Blogs TechNet relatedl Blogs TechNet Flash Newsletter TechNet Gallery TechNet sharepoint enterprise keywords search Library TechNet Magazine TechNet Subscriptions TechNet Video TechNet Wiki Windows Sysinternals Virtual sharepoint enterprise search features Labs Solutions Networking Cloud and Datacenter Security

error 6875 sharepoint 2010

Error Sharepoint p Microsoft Tech Companion App Microsoft Technical Communities Microsoft Virtual Academy relatedl Script Center Server and Tools Blogs TechNet Blogs error loading and running event receiver object reference not set to an instance of an object TechNet Flash Newsletter TechNet Gallery TechNet Library TechNet Magazine error loading and running event receiver sharepoint TechNet Subscriptions TechNet Video TechNet Wiki Windows Sysinternals Virtual Labs Solutions Networking Cloud and Datacenter Security Virtualization Downloads Updates Service Packs Security Bulletins Windows Update Trials Windows Server R System Center R Microsoft SQL Server SP Windows Enterprise See all trials Related Sites Microsoft Download Center

error 7362 sharepoint 2010

Error Sharepoint table id toc tbody tr td div id toctitle Contents div ul li a href The Super User Account Utilized By The Cache Is Not Configured Sharepoint a li ul td tr tbody table p p p the cache is not configured Event ID The super user account utilized by the cache is not configured Hi all Today I'll explain how I solve relatedl the Event ID concerning the Publishing Cache I made a copy paste of the used explanation from Stephan Albert Bren blogspot On his page there is the stsadm version that I didn't used because

error access denied sharepoint 2010 central administration

Error Access Denied Sharepoint Central Administration table id toc tbody tr td div id toctitle Contents div ul li a href Sharepoint Access Denied Site Collection Administrator a li li a href Sharepoint Access Denied For All Users a li li a href Sharepoint Access Denied Page Customization a li li a href Sharepoint Access Denied For Some Users a li ul td tr tbody table p Home Other VersionsLibraryForumsGallery Ask a question Quick access Forums home Browse forums users FAQ Search related threads relatedl Remove From My Forums Answered by Access p h id Sharepoint Access Denied Site Collection

error creating site template sharepoint 2010

Error Creating Site Template Sharepoint table id toc tbody tr td div id toctitle Contents div ul li a href Site Definition And Site Template In Sharepoint a li li a href Sharepoint Templates Team Site a li li a href Sharepoint Site Templates List a li ul td tr tbody table p Home Other VersionsLibraryForumsGallery Ask a question Quick access Forums home Browse forums users relatedl FAQ Search related threads Remove From My sharepoint create site template with subsites Forums Asked by Error creating site from template - sharepoint create site template from existing site Sharepoint SharePoint SharePoint -

error creating wiki site sharepoint 2010

Error Creating Wiki Site Sharepoint table id toc tbody tr td div id toctitle Contents div ul li a href Sharepoint Wiki Page Examples a li li a href Sharepoint Wiki Page Library Vs Enterprise Wiki a li li a href Sharepoint Wiki Page Permissions a li ul td tr tbody table p for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the relatedl workings and policies of this site About Us Learn more sharepoint wiki page about Stack Overflow the company Business Learn more about hiring developers or posting

error creating mysite sharepoint 2010

Error Creating Mysite Sharepoint table id toc tbody tr td div id toctitle Contents div ul li a href Sharepoint Mysite Http Error The Service Is Unavailable a li li a href Create Mysite Sharepoint Powershell a li li a href Sharepoint Mysite Permissions a li li a href Sharepoint Mysite Setup a li ul td tr tbody table p Microsoft Tech Companion App Microsoft Technical Communities Microsoft relatedl Virtual Academy Script Center Server and Tools p h id Sharepoint Mysite Http Error The Service Is Unavailable p Blogs TechNet Blogs TechNet Flash Newsletter TechNet Gallery create mysite sharepoint TechNet

error deleting site sharepoint 2010

Error Deleting Site Sharepoint table id toc tbody tr td div id toctitle Contents div ul li a href Sharepoint Delete Site Column a li li a href Sharepoint Delete Site Page a li li a href Sharepoint Delete Site Collection Powershell a li ul td tr tbody table p the error message says October Uncategorizedadmin One of the first relatedl things I have students do in an End cannot delete site sharepoint User SharePoint Workshop is to create a test environment so they can play sharepoint delete site template in a sandbox without blowing away their production environment Who

error exporting the list named sharepoint 2010

Error Exporting The List Named Sharepoint table id toc tbody tr td div id toctitle Contents div ul li a href Sharepoint Export List Powershell a li li a href Sharepoint Export List To Excel Programmatically a li li a href Sharepoint Export List Item To Pdf a li ul td tr tbody table p each post Monday December SharePoint sharepoint export list to xml Error exporting the list named Posts at the URL Lists Posts p h id Sharepoint Export List Powershell p This is something I came across while trying to save a Blog Discussion forum as a

error log path in sharepoint 2010

Error Log Path In Sharepoint table id toc tbody tr td div id toctitle Contents div ul li a href Sharepoint Log Files a li li a href Uls Log Location Sharepoint a li li a href How To Move Files In Sharepoint a li ul td tr tbody table p Microsoft Tech Companion App Microsoft Technical Communities Microsoft Virtual Academy Script Center Server and Tools Blogs relatedl TechNet Blogs TechNet Flash Newsletter TechNet Gallery managed path in sharepoint TechNet Library TechNet Magazine TechNet Subscriptions TechNet Video TechNet Wiki Windows sharepoint certification path Sysinternals Virtual Labs Solutions Networking Cloud and

error on page sharepoint 2010

Error On Page Sharepoint table id toc tbody tr td div id toctitle Contents div ul li a href Sharepoint Error a li li a href Sharepoint Error Logs a li li a href How To Create A Page In Sharepoint a li li a href Application Page In Sharepoint a li ul td tr tbody table p soon Ruby coming soon Getting Started Code Samples Resources Patterns and Practices App Registration Tool Events Podcasts Training API Sandbox Videos Documentation relatedl Office Add-ins Office Add-in Availability Office Add-ins Changelog Microsoft sharepoint custom error page Graph API Office Connectors Office REST

error rendering control sharepoint 2010

Error Rendering Control Sharepoint table id toc tbody tr td div id toctitle Contents div ul li a href User Control In Sharepoint a li ul td tr tbody table p soon Ruby coming soon Getting Started Code Samples Resources Patterns and Practices App Registration Tool Events Podcasts Training API Sandbox Videos Documentation Office Add-ins Office relatedl Add-in Availability Office Add-ins Changelog Microsoft Graph API Office error rendering web part sharepoint designer Connectors Office REST APIs SharePoint Add-ins Office UI Fabric Submit to the delegate control in sharepoint Office Store All Documentation https www yammer com http feeds feedburner com

error sharepoint 2010 search no results

Error Sharepoint Search No Results table id toc tbody tr td div id toctitle Contents div ul li a href Internal Server Error Sharepoint a li li a href Sharepoint Designer a li li a href Sharepoint Workflow a li li a href Sharepoint Requirements a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings relatedl and policies of this site About Us Learn more about Stack p h id Internal Server Error Sharepoint p Overflow the company Business Learn

error when searching sharepoint 2010

Error When Searching Sharepoint table id toc tbody tr td div id toctitle Contents div ul li a href Sharepoint Search Internal Server Error Exception a li li a href Sharepoint Search Scope a li li a href Sharepoint Search Architecture a li li a href Sharepoint Search Not Returning Results a li ul td tr tbody table p games PC games p h id Sharepoint Search Internal Server Error Exception p Windows games Windows phone games Entertainment All Entertainment sharepoint search features Movies TV Music Business Education Business Students educators p h id Sharepoint Search Scope p Developers Sale

excel web access sharepoint 2010 an error has occurred

Excel Web Access Sharepoint An Error Has Occurred table id toc tbody tr td div id toctitle Contents div ul li a href Excel Web Access Web Part Sharepoint a li li a href Sharepoint Excel Web Part An Error Has Occurred a li li a href An Error Has Occurred Sharepoint Excel a li ul td tr tbody table p Home Other VersionsLibraryForumsGallery Ask a question Quick access Forums home Browse forums users FAQ Search related threads Remove From My relatedl Forums Answered by Excel Web App error p h id Excel Web Access Web Part Sharepoint p An

excel web access an error has occurred sharepoint 2010

Excel Web Access An Error Has Occurred Sharepoint table id toc tbody tr td div id toctitle Contents div ul li a href Excel Web Access Web Part Sharepoint Download a li li a href Excel Web Access Web Part Sharepoint Unable To Process The Request a li li a href Sharepoint Excel Web Part An Error Has Occurred a li ul td tr tbody table p for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this relatedl site About Us Learn more about Stack

ie8 error sharepoint

Ie Error Sharepoint table id toc tbody tr td div id toctitle Contents div ul li a href Sharepoint Browser Compatibility a li li a href Sharepoint Browser Compatibility a li li a href Sharepoint Online Browser Support a li ul td tr tbody table p Microsoft Tech Companion App Microsoft Technical Communities Microsoft Virtual Academy Script Center Server and Tools Blogs TechNet Blogs relatedl TechNet Flash Newsletter TechNet Gallery TechNet Library TechNet sharepoint ie compatibility Magazine TechNet Subscriptions TechNet Video TechNet Wiki Windows Sysinternals Virtual Labs Solutions sharepoint internet explorer Networking Cloud and Datacenter Security Virtualization Downloads Updates Service

ma-extension-error

Ma-extension-error p Powered by Microsoft Translator Wikis - Page Details First published by Tim Macaulay Microsoft When Jun relatedl PM Last revision by Peter Geelen Microsoft Contingent sharepoint ma-extension-error Staff When Jul AM Revisions Comments ma-extension-error sharepoint Options Subscribe to Article RSS Share this Engage Wiki Ninjas Blog Announcements Wiki Ninjas on Twitter TechNet more than one dn specified for the same profile Wiki Discussion Forum Can You Improve This Article Positively Click Sign In to add the tip solution correction or comment that will help other users Report inappropriate content using these instructions Wiki TechNet Articles FIM Troubleshooting ma-extension-error

microsoft geneva framework runtime installation error

Microsoft Geneva Framework Runtime Installation Error table id toc tbody tr td div id toctitle Contents div ul li a href Sharepoint Prerequisites Download Links a li li a href Microsoft Server Speech Platform Runtime x Download a li li a href Ado net Data Services Update For net Framework Sp a li li a href Sharepoint Prerequisites Installation Script a li ul td tr tbody table p Share A relatedl lot of download links point to hotfix for microsoft windows kb the older version of Geneva framework So if p h id Sharepoint Prerequisites Download Links p you are