Remove a Site Collection's Read Only Access From Local Site Collection Taxonomy Group in SharePoint 2013

In this article you will see how to remove a site collection from having read only access to the local site collection taxonomy group in SharePoint 2013 using the server object model.

Introduction

I have a site collection http://c4968397007/ in which I have created a taxonomy group. Navigate to the site collection http://c4968397007/. Click on "Settings" then click on "Site Settings".

Click on "Term store management" under the Site Administration section. You will be able to see the local site collection taxonomy group in the Taxonomy Term Store.

taxonomy-group-in-SharePoint 2013.jpg

In SharePoint 2013, local term sets can be exposed to other site collections. This is one of the improvements in SharePoint 2013. Please refer to http://www.c-sharpcorner.com/UploadFile/anavijai/cross-site-collection-term-set-access-in-sharepoint-2013/  to learn more about cross site collection term set access in SharePoint 2013. In my last article I explaind how to add the site collections to have read only access to the local site collection taxonomy group in SharePoint 2013 using the server object model. (In this article I have added two site collections to have read only access to the local site collection taxonomy group.). In this article you will see how to remove a site collection from having read only access to the local site collection taxonomy group in SharePoint 2013 using the server object model.

Procedure

  1. Open Visual Studio 2012 (Run as administrator).
     
  2. Go to "File" => "New" => "Project...".
     
  3. Select Console Application in the Visual C# node from the installed templates.
     
  4. Enter the Name and click on "OK".
     
  5. In the Solution Explorer, right-click on the "References" folder and then click on "Add Reference".
     
  6. Add the following assemblies from hive 15 (C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI).

    a. Microsoft.SharePoint.dll
    b. Microsoft.SharePoint.Taxonomy.dll
     
  7. Open the "Program.cs" file and replace the code with the following:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Taxonomy;

    namespace TaxonomyCodeSamples
    {
       
    class Program
        {
           
    staticvoid Main(string[] args)
            {
               
    //// removeSiteURL is string variable to store the root URL of site collection
                string removeSiteURL = "http://c4968397007:8080/sites/AppCatalog";

                using (SPSite site = new SPSite("http://c4968397007/"))
                {
                    TaxonomySession taxSession =
    new TaxonomySession(site);
                   
    //// Get the term store
                    TermStore termStore = taxSession.TermStores["MMS"];
                   
    //// Get the local site collection taxonomy group
                    Group group = termStore.GetSiteCollectionGroup(site);
                   
    //// Removes a site collection from having read-only access to this local site collection group.
                    group.DeleteSiteCollectionReadOnlyAccess(removeSiteURL);
                   
    //// Commit all the changes
                    termStore.CommitAll();
                }
            }
        }
    }

  8. Hit F5.
     
  9. Navigate to the site collection http://c4968397007/. Click on "Settings", and then click on "Site Settings".
     
  10. Click on "Term store management" that is available under the "Site Administration" section. You will be able to see the local site collection taxonomy group in the Taxonomy Term Store.
     
  11. Click on "Site Collection - c4968397007 taxonomy group". On the properties window under the Site Collection Access section you will be able to see the site collection URL (http://c4968397007:8080/sites/AppCatalog ) successfully removed that had read only access to the local site collection taxonomy group.

    Output-taxonomy-group-in-SharePoint 2013.jpg

Summary

Thus in this article you have seen how to remove a site collection from having read only access to the local site collection taxonomy group in SharePoint 2013 using the server object model.

Reference

http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.taxonomy.group.deletesitecollectionreadonlyaccess.aspx