All possible ways to find SharePoint Version and Build number

If you are trying to find exact Version and Patch level of your SharePoint installation, then use one of the following methods Method 1 : Using Service.cnf url Navigate to following url in your browser  <Your SharePoint Site>/_vti_pvt/Service.cnf You will a response similar to following vti_encoding:SR|utf8-nl vti_extenderversion:SR|14.0.0.4762  Check the number shown in your response at SharePoint … Read more

Share

Custom Timer Jobs versus PowerShell and Task Scheduler for Scheduled Tasks

Although I am a great fan of using PowerShell for performing lots of tasks in SharePoint quickly, but there are certain areas where PowerShell may not be the optimum solution. One of which is Custom Timer Jobs in SharePoint. Although you can schedule a PowerShell script by a task scheduler in windows to run some … Read more

Share

How to detect if the given webpage is generated by SharePoint?

If you want to find out whether the given web page is generated by SharePoint or not then the most authentic way of verification is to check Response Headers. SharePoint adds an specific response header (along with others) called MicrosoftSharePointTeamServices The presence of this header is a proof that the given web page is served … Read more

Share

Difference between Security Context of Workflow Code in SharePoint 2007 and 2010

In SharePoint 2010, any code which executes because of the changes made by the workflow process will run in context of the user who either started the workflow or responsible for changes which caused the code to be executed. But … In SharePoint 2007,  any code which executes because of the changes made by the workflow process … Read more

Share

Solution for viewing HTML files in browser from SharePoint Document Library

In SharePoint 2010 document library, if you click on a file with .html extension, you will notice that browser will open Save File dialogue box. This behaviour stops you to view HTML files directly in browser from document library and some times it is very annoying. To resolve it and view HTML files in browser, … Read more

Share

Solution for “Access denied by Business Data Connectivity” Error

If you are trying to create external data type list and get the error “Access Denied by Business Data Connectivity” then the most common reason for that can be the incorrect permissions for your target External Content Type. To fix the issue, please perform the following steps: Open your SharePoint 2010 Central Administration Page Under … Read more

Share

Solution: The Taxonomy feature (Feature ID “73EF14B1-13A9-416b-A9B5-ECECA2B0604C”) has not been activated

If you are trying to add a Managed Metadata type column and getting “The Taxonomy feature (Feature ID “73EF14B1-13A9-416b-A9B5-ECECA2B0604C”) has not been activated” error then here is the quickest way to enable the required feature by using following PowerShell cmdlet: Enable-SPFeature -id “73EF14B1-13A9-416b-A9B5-ECECA2B0604C” -url “YourSiteUrl”          

Share

SharePoint 2010 Service Pack 1 is out!

Today Microsoft has released the much awaited Service Pack 1 for SharePoint 2010 along with Office 2010.  Along with many bug fixes and minor updates, here is a quick list of new functionality which SP1 will add in your SharePoint environment:   For video display, you will now be able to select a frame as … Read more

Share