Sharepoint 2010 - Advanced Settings for Document library in SharePoint 2010 using PowerShell
In this article we will be seeing how to change the Advanced Settings for Document library in SharePoint 2010 using PowerShell and c#. Go to Document Library => Library Settings => General Settings =>Advanced Settings. Using C#: using (SPSite site = new SPSite("http://serverName:1111/")) { using (SPWeb web = site.RootWeb) { SPList docLibrary=web.Lists["Doc Library"]; // Change the advanced settings ...