The spprincipal tag has no wiki summary.
1
vote
2answers
119 views
Is possible to rename a SPUser(IsDomainGroup) LoginName?
I want to rename SPPrincipals that are ADGroups.
I've tried with
$SPFarm = Get-SPFarm
#$SPFarm.MigrateGroup("loginName", "newLoginName")
$SPFarm.MigrateUserAccount("loginName", "newLoginName", ...
1
vote
0answers
110 views
How do I get Active Directory Group Name from Sharepoint programmatically?
So my problem is this:
I have created a Sharepoint Group and added a New User, which in fact is an Active Directory
Group.
Now I loggin using an account from this Active Directory Group.
I need this ...
1
vote
1answer
153 views
ResolvePrincipal returns SPPrincipalInfo with PrincipalId == -1
When/why does SPUtility.ResolvePrincipal return a non-null SPPrincipalInfo with a PrincipalId of -1 ?
I can manually assign rights to the user through the web interface.
The user resides in an active ...
1
vote
1answer
2k views
Determine if SPPrincipal is SPUser, SPGroup or AD User
Context
I have a List<SPPrincipal> that is a mix of SPGroup, SPUser and AD Users.
Problem
I'm trying to find out how to determine if an SPPrincipal I have is an SPUser, SPGroup or an AD ...
0
votes
2answers
687 views
SPFieldUserValue and SPPrincipal
I have a complex application that have several field of type UserMulti. These fields can accept either SPUser or SPGroup or a combination of both kind.
I have in my code the ID and the name of a ...