Let's SharePoint

April 2015

  1. HOME
  2. Monthly Archives: April 2015
April 22, 2015 / Last updated : November 16, 2015 Sethu Server Side Object Model

How to Remove Users from SharePoint Group Programmatically in SharePoint 2013

Hello SharePointers, In this article, I will give a simple code to remove users from a SharePoint group programatically.Below is the code to remove from user to the group using Server Side Object Model. public static void AddRemovefromSharePoint Group( string spuser,string spgroup,string spurl) { string loginName = spuser; SPSecurity.RunWithElevatedPrivileges(delegate() { using (SPSite site = new SPSite(spurl)) […]

April 21, 2015 / Last updated : November 16, 2015 Sethu Server Side Object Model

How to add Users to a SharePoint Group in SharePoint 2013

Hello SharePointers, In this article, I will give a simple code to add users to a SharePoint group programattically.Below is the code to add a user to the group using Server Side Object Model. public static void AddUserToSharePoint Group( string spuser,string spgroup,string spurl) { string loginName = spuser; SPSecurity.RunWithElevatedPrivileges(delegate() { using (SPSite site = new […]

April 20, 2015 / Last updated : November 14, 2015 Sethu PowerShell

How to Enable Email Notification for a Task List in SharePoint 2013

In SharePoint 2013, you will be amazed to see that , there is no option available in UI to enable email Alerts for Task List.  However, this can be easily achieved through Powershell commands. Below are the piece of code which enables email notification. $spsite=Get-SPSite “http://mysite/” $spweb=$spsite.OpenWeb() $splist=$spweb.Lists.TryGetList(“Tasks”) if($splist -ne $null) { $splist.EnableAssignToEmail =$true $splist.Update() […]

April 17, 2015 / Last updated : November 19, 2015 Sethu Client Side Object Model

How to Clear Client People Picker in SharePoint 2013?

Client People Picker is newly introduced in SharePoint 2013. People picker is a SharePoint Control to browse and select the sharepoint users or groups in an organisation or Active Directory. The client people picker is an HTML and JavaScript control that provides cross-browser support. A client side People picker has the following four components. An input […]

April 15, 2015 / Last updated : November 12, 2015 Sethu SharePoint 2010

A Web Part or Web Form Control on this Page cannot be displayed or imported. The type could not be found or it is not registered as safe

Hi Folks, Today, I will discuss about the common issue occurred during web part development in SharePoint 2010 or 2013 or 2007. When we go for customization in SharePoint, first thing that comes to our mind is SharePoint Web Parts.  According to MSDN  “Web parts are server-side controls that run inside a web part page: they’re […]

April 13, 2015 / Last updated : November 19, 2015 Sethu Client Side Object Model

How to show List items in SharePoint 2013 Using REST API and Content Editor Web Part

Hi Fellow Share Pointers, SharePoint 2013 introduces a new set of API’s – REST APIs to access SharePoint data in a faster and cleaner way. SharePoint REST API’s provide you the client side compatibility to work with SharePoint List and Library objects. With the help of SharePoint REST APIs we can work with the following […]

April 10, 2015 / Last updated : April 10, 2015 Sethu PowerShell

How to update User Profile Picture in SharePoint 2013 using Powershell

User profiles and user profile properties provide information about SharePoint users currently present in the SharePoint environment. SharePoint User Profile and Users information can be imported from  Active Directory. SharePoint Server 2013 provides the following APIs to work with User Profiles 1.Server Object Model 2.Client Object Model a. .NET client object model b. Silverlight client […]

April 9, 2015 / Last updated : November 18, 2015 Sethu SharePoint 2010

Most Popular Items is not Working for SharePoint Document Libraries and Lists

Hello SharePointers, SharePoint Usage Analytics is an important component in SharePoint 2010 and 2013. In SharePoint 2010, Usage analytics is a separate component and will be configured as a separate APP service. In SharePoint 2013, Usage Analytics is  a part of SharePoint Search Service. The Usage Analytics Processing Component generates two reports. Popularity Trends Most […]

April 8, 2015 / Last updated : April 8, 2015 Sethu SharePoint 2010

You do not have permission to do this operation. Ask your site administrator to change your permissions and then try again, or log on with a user account that has this permission. To log on with a different user account click OK.

Hello Share Pointers, I’m going to share an interesting issue that many could potentially face while using SharePoint Designer in SharePoint 2010 or SharePoint 2013. one of my fellow team mate was trying to edit a custom form in SharePoint Designer ,and we get greeted with the long and boring message “You do not have […]

April 7, 2015 / Last updated : November 18, 2015 Sethu Customization

SPLongOperation in SharePoint 2013

Hi Fellow Readers, Today, we are going to see one of the important feature in SharePoint 2013 –  SPLongOperation. It is basically used by programmers  to increase the time out of the SharePoint Pages. One interesting fact is that SharePoint Pages in the layouts folder are getting timed out in 6 minutes – 360 seconds. In […]

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.