Showing posts with label SharePoint Groups. Show all posts
Showing posts with label SharePoint Groups. Show all posts

Oct 9, 2017

Check if current user is member of a SharePoint group using JQuery

Scenario This code will help you to check if the current user is a member of a group. Suppose you want to check if the current user is member of a Owners group or not. Just update the "grpName" variable value and run the code 😎 Steps to use the code 1. Use the Script Editor web part and add...

May 3, 2012

Programmatically get SharePoint Users with Group Name

In this article, we will come to know how to list all the users from the SharePoint site using c#. Scenario: We have to retrieve all the Users from the SharePoint site with the Group Name using object model. Solution: I have created a console application which will group the users with the Group Name and also display the User details. Code (.cs): 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 using...

Mar 12, 2012

Export SharePoint User Groups in Excel

In this article, we are going to discuss about a SharePoint tip which is not present in the User Groups by default. Scenario: From any list in the SharePoint, you can export the whole list in to a excel file or you can edit and save the excel file. But is that possible in SharePoint User Groups? Yes,...