This article explains how to remove Drop off library from the SharePoint 2010 site using SharePoint 2010 Object Model.SharePoint 2010 introduced a new feature called Content Organizer. This article does not explain the Content Organizer feature. After activitation of the Content Organizer feature a new Drop off Library will be created in the site. Like the normal document library you can't delete this document library. You won't be seeing an option "Delete this document library" (Drop off Library => Library Settings => Permissions and Management). It doesn't work, if you try to remove this document library by deactivating the Content Organizer feature. You can remove this document library by using SharePoint object model or SharePoint Manager 2010 or Powershell.Remove Drop Off Library using Powershell:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using Microsoft.SharePoint;
namespace DropOffLibrary{ class Delete { static void Main(string[] args) { using (SPSite site = new SPSite("http://serverName:2011/")) { using (SPWeb web = site.OpenWeb()) { SPList list = web.GetList("http://serverName:2011/DropOffLibrary/"); list.AllowDeletion = true; list.Update(); } } } }
How to remove Drop off library from the site using SharePoint 2010 Object Model
How to remove Drop off library from the site using SharePoint Management 2010
I am doing a workflow, here is the task: users submit learning materials with metadata, when they submit it has to go to drop off library, from there it has to route to supervisor with a link, so that supervisor opens that link and see the what requestor sent and decide to approve or rejects. if he approves, user should get notice that is has got approved with some supervisor comments and document has to publish to a library. or else if he rejects, email with supervisor comments to user. Please let me know.