Thursday, June 20, 2013 11:23

‘SharePoint’ News

Subscribe to RSS feed

Enable webpart drag and drop in SharePoint 2010

Wednesday, May 29, 2013 17:26

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, ...

Tagged with:

Ennable debug in SharePoint 2010

Wednesday, May 15, 2013 14:34

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 ...

‘Physical’ location of GAC assemblies

Monday, February 25, 2013 9:49

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

How to Hide Top Bar, Ribbon, Quick Launch in SharePoint 2010?

Monday, February 25, 2013 9:48

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 ...

Get the build version of SharePoint 2010

Wednesday, July 18, 2012 15:19

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 ...

There are no registered destination locations for this site. Select another action.

There are no registered destination locations for this site. Select another action.

Tuesday, July 17, 2012 23:50

When setting Retention policy in Information Management Policy Settings of content type or library, we may come across the issue "There are no registered destination locations for this site. Select another action." if trying to config "Send to another location": The solution ...

Undeclaring a record in SharePoint

Undeclaring a record in SharePoint

Tuesday, July 17, 2012 22:03

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 ...

SharePoint 2013 and Office 2013 are released

Monday, July 16, 2012 19:46

The preview of SharePoint 2013 and Office 2013 (a.k.a SharePoint 15 and Office 15) is launched.

The detail of SharePoint feature

Tuesday, April 12, 2011 2:53

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 ...

How to execute the PowerShell script

Tuesday, April 12, 2011 2:45

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), ...