The spgroup tag has no wiki summary.
1
vote
1answer
703 views
Changing SPRoleAssignment to SPList without affecting subfolders
When I remove the roleassignments for the group on the list, this also removes the roleassignments for the subfolders. (BreakInheritance == True for the subfolders. )
My code:
//BreakRoleInheritance ...
1
vote
3answers
1k views
How to add AD group to SharePoint 2010 SPGroup programmatically?
Oy,
Been trying to add an AD group to an SPGroup programmatically and it's not working.
I've tried:
SPGroup.AddUsers("myADgroup");
and
SPGroupCollection.Add(groupName, currentUser, "myADgroup", ...
0
votes
2answers
45 views
Restrict users to view a particular page in sharepoint
i have a sharepoint site http://spp/sitepages/page2.aspx
I have a group called "Group1" with full control. There are two users "User1" and "User2".So both the users will have full control and both of ...
0
votes
0answers
106 views
Unable to delete sharepoint group without being site collection administrator
I have a Sharepoint Group (SPGroup1) whose owner is User1. User1 has full control over the root web site (and all its sub-sites), however it is not a site collection administrator.
When I log in as ...
0
votes
1answer
196 views
SPGroup - Get Child groups
I am currently getting a list of groups a user is a member of using the following code:
SPUser user = SPContext.Current.Web.CurrentUser;
var groupNames = (from SPGroup userGroup in user.Groups select ...
0
votes
1answer
284 views
Adding Collection of SPUsers into SPGroup
We can add an SPUser into an SPGroup by objSPGroup.Users.Add(objSPUser). I need to add SPUserCollection into one SPGroup.
How can i do it?
0
votes
1answer
200 views
membership requests e-mail address for SPGroup sharepoint
While creating Group in sharepoint we have an option
"Send membership requests to the following e-mail address"
It is used to send membership request to the SPGroup.
But how can we set the e-mail ...
0
votes
2answers
1k views
How can I list all SPUser objects in a SPGroup?
I need to retrieve all SPUser's from a SPGroup. Unfortunately, the group may contain Active Directory groups, so a simple SPGroup.Users is not enough (I'd just get a single SPUser for the AD group, ...