one day we will find out that the drag and drop of webpart is disabled in SharePoint 2010. :) It works in SharePoint 2007 by default. What we need to do in SharePoint 2010? Just adding a parameter in your URL.e.g. Original URL: http://ukoomsharepoint.com/pages/default.aspx, ...
Source: http://msdn.microsoft.com/en-us/library/ee231550.aspx When you first debug a SharePoint solution in Visual Studio, a dialog box alerts you that the web.config file is not configured to enable debugging. (The web.config file is created when you install SharePoint server. For more information, see Working with Web.config Files.) The dialog box gives you ...
To open up the 'physical' location to all the GAC assemblies: Start -> Run Type ‘C:\WINDOWS\ASSEMBLY\GAC_MSIL’ Press ‘Enter’ xcopy "$(TargetPath)" "$(SolutionDir)Ukoom\GAC\" /s /Y /R xcopy "$(TargetPath)" "c:\UKoom Symbols\" /s /Y /R xcopy "$(TargetDir)*.pdb" "c:\UKoom Symbols\" /s /Y /R
Top Bar, Ribbon, Quick Launch are come up with Application Pages by default. If you want to open the page in Dialog Framework then those elements will take more space and make the layout cluttered. You can remove these elements by creating new page layout which is cumbersome/time consuming. One way ...
How to get the build version of SharePoint 2010? build version of farm: Central Administration -> System Settings -> Manage servers (/_admin/FarmServers.aspx) Windows PowerShell: (get-spfarm).buildversion build version of products: Central Administration -> Upgrade and Migration -> Check Product and patch installation status. (/_admin/PatchStatus.aspx) build version of databases: Central Administration -> Upgrade and Migration -> Review database status ...


People know how to declare a record by using the Ribbon action - 'Declare Record'. But how are we undeclaring a record in SharePoint? In the support site of Microsoft, there is a screenshot with 'Undeclare Record' action under the 'Declare Record' action. It is not true, at least it is ...
The preview of SharePoint 2013 and Office 2013 (a.k.a SharePoint 15 and Office 15) is launched.
SharePoint Features can be targeted at the Farm, Web Application, Site Collection or Web Site scope. The target will effect things like where you can manage the feature activation from in the UI and at which point (and how many times) the Feature receiver events ...
Here are basic instructions to help you execute a PowerShell command. You have a choice of three strategies; firstly, the time-honoured method of copying other people's examples, and then pasting their code into your PowerShell session. Secondly, creating cmdlets (my favorite), ...