In my previous blog, I have show you to install Prerequisite tools for SharePoint 2013. In this blog, I’m going to walk you through the Installation of SharePoint 2013 on Windows Server 2012 R2. SharePoint 2013 Installation Series: Part 1 – Step by step Installation of Windows Server 2012 R2 Part 2 – Step by step installation of Active

Read More
Step by step installation of SharePoint 2013 with Sql Server 2012 on Windows Server 2012 R2 (part 5)

This blog series details the complete installation of SharePoint 2013 on Windows Server 2012 R2. In this blog, I’ll show you how to install SharePoint 2013 prerequisites Online and Offline. Also how to troubleshoot any issues that arise during the installation process. Note: Make sure that you are connected with an internet connection because it may require you to

Read More
Install and troubleshoot Online/Offline prerequisites issues for SharePoint 2013 (part 4)

We recently came across a strange situation where we could not add sections to an existing OneNote notebook hosted in SharePoint 2013. Using the Web App we noticed that the New Section option under Insert was grayed out.  Also we noticed we could no longer sync the notebook from a local copy of OneNote 2013

Read More
Cannot Sync or add a new section to a OneNote 2013 notebook in SharePoint 2013 Web App

Today I was asked how to retrieve all of the SharePoint Groups of the currently logged-in user to sharepoint. To achieve this, first you need to recover the authority connected to sharepoint with the function GetCurrentUser and then read the “ID” property. Once you have this, you can then use the GetGroupsOfUser (userId) that takes as input

Read More
How to return all of the SharePoint groups for the current user using JSOM

In my previous blogs, I have shown you how to setup Active Directory Domain Services on Windows Server 2012 R2 for SharePoint 2013.  Now we should be able to setup the Administrator and Service accounts in Active Directory. In this blog, I’ll walk you step by step through the installation of Microsoft SQL Server 2012 on

Read More
Step by step Installation of SharePoint 2013 on Windows Server 2012 R2 part 3

A sample JS to clear the taxonomy field value using the JS CSOM. example: var context = SP.ClientContext.get_current(); var list = context.get_web().get_lists().getByTitle(“list title”); var listItem = list.getItemById(58); var field = list.get_fields().getByInternalNameOrTitle(“taxonomyfieldname”); var taxField = context.castTo(field, SP.Taxonomy.TaxonomyField); listItem.parseAndSetFieldValue(“taxonomyfieldname”, “”); listItem.parseAndSetFieldValue(“taxonomyfieldnameTaxHTField”, “”); listItem.update(); context.load(listItem); context.executeQueryAsync(function () {},function(){}); The above code clears the Taxonomy field value using the

Read More
How to cleara Taxonomy field using Javascript CSOM