"The day you stop learning SharePoint is the day you stop using it."

Delete Drop Off Library through PowerShell

Simply deactivating Content Organizer Feature won’t help in deleting the Drop Off Library. Execute the below PowerShell Script and get the job done: Solution: $url = "http://<siteurl>/" $feature = Get-SPFeature "DocumentRouting" $site = New-Object Microsoft.SharePoint.SPSite($url) foreach ($web in $site.AllWebs) { if ($web.Features[$feature.ID]) { Disable-SPFeature $feature -Url...
Share:

SHAREPOINT 2010 RIBBON CUSTOMIZATION – Add a Print button on document library’s display form ribbon

This was again a custom requirement by one of the client based in Singapore who requested to add a print button in the document library’s display form ribbon to print the display form. And again I developed a custom feature in Visual Studio 2010 starting with an Empty SharePoint Project template. Here are...
Share:

SHAREPOINT 2010 RIBBON CUSTOMIZATION - Display a warning message box on click of Cancel button of EditForm Ribbon

One of our customer based in Singapore requested to display a warning message on click of Cancel button of an EditForm of SharePoint Foundation 2010 document library. This feature is not available OOB, you need to develop a custom feature through Visual Studio 2010 as I did. You need to follow...
Share:

Increase SharePoint Site template and List template size (2007/2010)

You are trying to save a site or a list (with content) as a template in SharePoint 2007/2010, but it gives you this error: "The list is too large to save as a template. The size of a template cannot exceed 10485760 bytes." OR "The site is too large to save as template. The size of template cannot exceed 10485760 bytes.”It is pretty easy to increase the size of template in SharePoint....
Share:

Delete InfoPath Published Columns or Hidden Columns

Some of you may have encountered the problem of deleting the InfoPath published columns. These columns are actually published as Content Types, so better we call them as content types. A custom column is easy to delete using OOB feature but deleting an InfoPath published column is pain in the arse. Below is a small script that will help you delete the InfoPath published columns. Note: The below PowerShell...
Share:

Error "Updates are currently disallowed in GET requests. To allow updates on a GET, set the 'AllowUnsafeUpdates' property on SPWeb".

You may encounter an exception when accessing General Settings or Resource Throttling for a web application in Central Administration: Solution: Open SharePoint Management Shell and execute the below commands: $w = get-spwebapplication http://<web application...
Share:

How to debug Windows Service in Visual Studio 2010

Most of the developers are unaware of the Visual Studio capability to debug Windows Service. On most of the blogs and forums I found common solutions speaking about attaching a debugger/process to the Windows Service.While working on a SharePoint project my team came across a requirement to develop a Windows Service that consumes a SharePoint Web Service “Lists.asmx”. This was basically required...
Share:

SharePoint-StackExchange Moderator

Author's Profile

My photo
India
A SharePoint Enthusiast working as a Lead Solution Architect for an IT Software & Consulting Company in Mumbai. I believe in giving back to the community through which I also learn and develop and eventually grow as an individual and professional. This blog is a small contribution to the community where I live in and may help someone who is seeking knowledge like me.

Popular Posts

Powered by Blogger.

Contact Form

Name

Email *

Message *

Total Pageviews