Let's SharePoint

September 2015

  1. HOME
  2. Monthly Archives: September 2015
September 25, 2015 / Last updated : September 25, 2015 Sethu Features

Connect to Outlook option is greyed out in SharePoint 2013?

Hi SharePointers, Connect to Outlook is one of the important feature in SharePoint which enables you to collaborate with Microsoft Outlook. Microsoft SharePoint 2013 allows you to synchronize your Document Library or List to the Outlook Mailbox. your synchronized list or library appears in outlook under “SharePoint Lists” You can synchronize a SharePoint contact list […]

September 24, 2015 / Last updated : November 14, 2015 Sethu SharePoint 2013

How to Change Favicon Icon in SharePoint 2013?

In SharePoint 2013, we can customize the default favicon icon that comes up with the Installation. For those, who don’t know about the Favicon, its the small icon which you see in browser Tab with the web title. You can change it to your organization icon. You can customize it in the SharePoint Master Page […]

September 17, 2015 / Last updated : November 7, 2015 Sethu Client Object Model

How to delete List in Sharepoint 2013/Office 365 using CSOM

In this article, we will learn about List deletion in SharePoint 2013/Office 365 using CSOM. Below is the sample CSOM code to achieve the same. ClientContext clientContext= new ClientContext(siteUrl); clientContext.AuthenticationMode = ClientAuthenticationMode.Default; clientContext.Credentials = new SharePointOnlineCredentials(userName, pwd); Web web = clientContext.Web; List list = web.Lists.GetByTitle(“CutomList”); list.DeleteObject(); clientContext.ExecuteQuery(); Hope it helps!! Happy Sharepointing 🙂

September 17, 2015 / Last updated : September 17, 2015 Sethu Client Side Object Model

How to delete a page or File in Sharepoint 2013/Office 365 using CSOM

In this article, we will learn about delete a page or File  in Sharepoint 2013/Office 365 using CSOM. Below is the sample CSOM code to achieve the same. ClientContext clientContext= new ClientContext(siteUrl); clientContext.AuthenticationMode = ClientAuthenticationMode.Default; clientContext.Credentials = new SharePointOnlineCredentials(userName, pwd); Web web = clientContext.Web; string serverRelatedURL = web.ServerRelativeUrl; File file = web.GetFileByServerRelativeUrl(serverRelatedURL + filename); clientContext.Load(file); file.DeleteObject(); […]

September 16, 2015 / Last updated : November 21, 2015 Sethu Client Side Object Model

How to create List view in Sharepoint 2013/Office 365 using CSOM

In this article, we will learn  about  List view creation in Sharepoint 2013/Office 365 using CSOM. Below is the sample CSOM code to achieve the same. ClientContext clientContext= new ClientContext(siteUrl); clientContext.AuthenticationMode = ClientAuthenticationMode.Default; clientContext.Credentials = new SharePointOnlineCredentials(userName, pwd); Web web = clientContext.Web; clientContext.Load(clientContext.Web, w => w.ServerRelativeUrl); clientContext.ExecuteQuery(); List customList = clientContext.Web.GetList(String.Format(“{0}/Lists/customList”, clientContext.Web.ServerRelativeUrl.TrimEnd(‘/’))); customList.Views.Add(new ViewCreationInformation { […]

September 16, 2015 / Last updated : November 14, 2015 Sethu Client Side Object Model

How to delete ContentTypes in Sharepoint 2013/Office 365 using CSOM

In this article, we will learn about ContentType deletion in Sharepoint 2013/Office 365 using CSOM. Below is the sample CSOM code to achieve the same. ClientContext cc = new ClientContext(siteUrl); cc.AuthenticationMode = ClientAuthenticationMode.Default; cc.Credentials = new SharePointOnlineCredentials(userName, pwd); Web web = cc.Web; ContentTypeCollection contentTypes = web.ContentTypes; cc.Load(contentTypes); cc.ExecuteQuery(); foreach (var item in contentTypes) { if (item.StringId […]

September 15, 2015 / Last updated : September 16, 2015 Sethu Client Side Object Model

How to create ContentTypes in Sharepoint 2013/Office 365 using CSOM

In this article, we will learn about ContentType creation in Sharepoint 2013/Office 365 using CSOM.  Below is the sample CSOM code to achieve the same. ClientContext cc = new ClientContext(siteUrl); cc.AuthenticationMode = ClientAuthenticationMode.Default; cc.Credentials = new SharePointOnlineCredentials(userName, pwd); Web web = cc.Web; ContentTypeCollection contentTypes = web.ContentTypes; cc.Load(contentTypes); cc.ExecuteQuery(); foreach (var item in contentTypes) { if (item.StringId == “0x0101009189AB5D3D2647B580DFGT56F356FB2”) return; […]

September 12, 2015 / Last updated : September 12, 2015 Sethu Office 365

What is Document ID Service in Sharepoint 2013/Office 365?

In this article, we will learn bout Document ID service feature in Sharepoint 2013/Office 365. This will sign  unique document ID for ech nd every document present in  document library. Later, you can work on thee document in the document library even if they re moved from one site to another site. Steps to Enable Document ID […]

September 11, 2015 / Last updated : September 11, 2015 Sethu PowerShell

How to Create Managed Property in Sharepoint 2013 using Powershell?

In this article, we will see how to create  new managed property in Sharepoint 2013 environment. Below is the sample powershell script to achieve the same. #Get Search Service Application $category = Get-SPEnterpriseSearchMetadataCategory –SearchApplication $searchapp –Identity $_.Category #Get the Crawled Property First $cprop = Get-SPEnterpriseSearchMetadataCrawledProperty -SearchApplication $searchapp -name $_.CrawledPropertyName -Category $category -ea silentlycontinue #If the […]

September 10, 2015 / Last updated : November 17, 2015 Sethu Client Side Object Model

How to add Webpart in a Page in Office 365 using CSOM ?

In this article, we will talk bout the site provisioning technique which is followed in Office 365  app model. you can add web part to  SharePoint page using CSOM code. Below is the sample piece of code to achieve the same. var context = new SP.ClientContext(webUrl); var web = context.get_web(); var page= web.getFileByServerRelativeUrl(webUrl + pageUrl); […]

Posts navigation

  • Page 1
  • Page 2
  • »

Recent posts

How to insert table in Modern Pages using PnP Powershell in Office 365/Sharepoint Online?

June 7, 2019

How to set up Access Requests in SharePoint online using Powershell?

May 11, 2019

How to change the default SharePoint suite logo in SharePoint 2013/2016/2019?

April 30, 2019

How to add metadata to Document libraries in SharePoint online using powershell.

April 27, 2019

How to get Sharepoint site details using Powershell in Office 365?

April 17, 2019

How to get alerts for a specific policy in Cloud app security using Powershell

April 16, 2019

How to get the list of custom apps in App catalog using Powershell?

April 9, 2019

How to get the list of policies in Microsoft Cloud app security using window powershell?

April 4, 2019

How to get the list of List and Document library item counts in SharePoint online using Pnp Powershell ?

April 4, 2019

How to restore subsite in a Sharepoint online site collection using Pnp Powershell

April 2, 2019

Category

  • Anonymous access
  • Client Object Model
  • Client Side Object Model
  • Customization
    • Customization
  • Designer Workflows
  • Errors & Resolutions
  • Features
  • Google Analytics
  • InfoPath
  • Item Scheduling
  • JSOM
  • Nintex worflows
  • Office 365
  • Office 365 Groups
  • PnP JS Library
  • PowerShell
  • Powershell Online
  • REST API
  • REST API's
  • Server Side Object Model
  • SharePoint 2010
  • SharePoint 2010 Search
  • SharePoint 2013
  • SharePoint 2013 Search
  • SharePoint 2013 Workflows
  • SharePoint 2016
  • SharePoint 2019
  • SharePoint Designer
  • SharePoint Framework
  • SharePoint Online
  • SharePoint Pnp
  • SharePoint Usage Analytics
  • Unique values
  • User Profile Services
  • Windows Powershell
  • Workflow Manager

Archive

  • June 2019
  • May 2019
  • April 2019
  • March 2019
  • February 2019
  • January 2019
  • December 2018
  • November 2018
  • October 2018
  • September 2018
  • August 2018
  • July 2018
  • May 2018
  • April 2018
  • March 2018
  • February 2018
  • January 2018
  • December 2017
  • November 2017
  • October 2017
  • June 2017
  • May 2017
  • April 2017
  • March 2017
  • February 2017
  • January 2017
  • November 2016
  • October 2016
  • September 2016
  • August 2016
  • July 2016
  • June 2016
  • January 2016
  • November 2015
  • October 2015
  • September 2015
  • August 2015
  • July 2015
  • May 2015
  • April 2015
  • March 2015

Copyright © Let's SharePoint All Rights Reserved.

Powered by WordPress & Lightning Theme by Vektor,Inc. technology.