Questions tagged [sharepoint-userprofile]
50 questions
3
votes
1 answer
Using Reflection to set the value of an indexed property
I am try to replicate the following c# code using reflection:
UserProfileManager userProfileManager = new UserProfileManager(ServerContextGoesHere);
UserProfile userProfile = null;
userProfile =…

Ryan
- 3,452
- 4
- 23
- 20
2
votes
0 answers
I am trying to update a Sharepoint list item with Powershell
I have never worked with Powershell or Sharepoint before, trying to help a friend, so my mistake might be really obvious, I apologise in advance.
So what I'm trying to do here is:
-loop through all user profiles and...
-loop through my already…

Nora
- 21
- 5
2
votes
1 answer
SharePoint - Set nested term for a user profile property using CSOM
I'm setting some user profile properties using CSOM, specifically some properties backed by term sets. The only way to do this (that I know of) are the SetSingleValueProfileProperty and SetMultiValuedProfileProperty methods of the…

Jason
- 21
- 1
2
votes
1 answer
How to impersonate admin user for creating OneDrive or Personal Site?
I am creating personal site in office 365 using csom as follows
private void createPersonalSite()
{
try
{
//using (SPSite site = new SPSite("Site URL"))
//{
…

Shailesh Jaiswal
- 3,606
- 13
- 73
- 124
1
vote
0 answers
Use selected user-profile service in SharePoint
If I have four user-profile services in SharePoint.
How to select a specific user-profile service?
I wanted to get data from user-profile service 2.
More: How to use selected User-profile service in SharePoint

nirav
- 373
- 3
- 7
- 20
1
vote
0 answers
Using SharePoint profils to manage other than people accounts?
In a SP 2010 project, I have to create a directory (in functional terms) which must contains :
corporate users
external users (partners)
resources (meeting rooms, printers, etc.)
all of this kind of entries have, of course, different data.
Profile…

Steve B
- 36,818
- 21
- 101
- 174
1
vote
0 answers
SharePoint Online User Profile not synced with User Information List
We have few users whose work email listed in User Profile Properties not synced with User Information List.
Initially, We added one user and his details to User Profile Properties. And we added the user to 'Assigned To' field of a list. There was a…

Aswathy Santhosh
- 125
- 4
- 18
1
vote
1 answer
How to get Display name of user profile manager property
When I was writing custom display template for SharePoint people search, I wanted to display the manager of the searched user. When I display the manager value returned from SharePoint people search, it displays as follows:…

Chinthaka Wimalaratna
- 75
- 1
- 1
- 8
1
vote
0 answers
Sharepoint online User profile properties sync with external LOB system
We are doing planning work to migrate our SharePoint 2010 on prem to SharePoint online. In the current environment , we have setup few custom user profile properties that get synced up with SQL table via BCS (Synchronization connections is consuming…

Vijay Sisodia
- 11
- 1
1
vote
1 answer
Updating SharePoint User Profile Property with a Taxonomy Term
I'm experiencing a problem trying to update a SharePoint User Profile property that is linked to a taxonomy TermSet. The following code results in an exception.
$spsite = Get-SPSite $mysiteurl
$context = Get-SPServiceContext $mysiteurl
$upm =…

Mark Mascolino
- 2,227
- 1
- 15
- 19
1
vote
1 answer
How to update UserProfile Properties on Sharepoint Online 2013 (O365)
I've been trying to update a user profile properties using c# on Sharepoint Online 2013.
I can't find how to do it, can someone help me?
Here is what i have to do:
I have a lot of custom properties on User Profile, and i need to edit it on an…

Diego C Louli
- 13
- 5
1
vote
0 answers
Get display name for user profile properties
I am trying to show which user profile properties the users are missing to fill out.
It is fairly easy to get the usersprofile, and userprofile properties:
function getUserPropertiesFromProfile() {
// Get the current client context and…

user3468671
- 21
- 4
1
vote
0 answers
Synchronize FBA Users (ASPNET Membership Databse in SQL Server) in User Profile Service
I have FBA configured in a web application (SharePoint 2013) with ASPNET Membership Database in SQL Server.
Now I need to have FBA users (SQL - Membership Database users) synchronized in User Profile Service. Please let me know if there is any way…

Amit Thakkar
- 356
- 2
- 6
1
vote
0 answers
Workaround for Sharepoint 2013 Workflow 2013 suspended for duplicate profiles
We have duplicate profiles in our SharePoint 2013 system because we have one webapp that uses SAML authentication and a 2nd webapp to support BI function that uses Kerberos. So most of our users have two profiles. We are just now standing up…

user3204725
- 11
- 1
1
vote
0 answers
SharePoint 2013 My Sites User Name With a Space Issue Double Encoding of space %20 becomes %2520
I have an issue regarding the links generated for User's My Sites, unfortunately all the users on the domain that will use SharePoint have a space in their user name i.e. 'Joe Bloggs'.
This means that when their 'My Site' is created it has the url…

R Barron
- 19
- 2