how change displayname in sharepoint 2013

Leili Vazietan 21 Reputation points
2020-08-15T12:48:43.89+00:00

hi
i want to change the Employee 's display name in sharepoint 2013

I want the display name to be registered in the following format when they register their leave :

display name - Personnel Code

how can i do it?

SharePoint Server
SharePoint Server
A family of Microsoft on-premises document management and storage systems.
2,227 questions
SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
9,680 questions
SharePoint Server Management
SharePoint Server Management
SharePoint Server: A family of Microsoft on-premises document management and storage systems.Management: The act or process of organizing, handling, directing or controlling something.
2,809 questions
{count} votes

Accepted answer
  1. Echo Du_MSFT 17,116 Reputation points
    2020-08-18T09:37:06.653+00:00

    You could completely modify the user's Display Name(first name and last name) through AD, but you have to resynchronize the User Profile in the SharePoint Central Admin.

    Follow these steps:

    1.Go to SharePoint CA >> click Manage service applications >> click User Profile Service Application
    2.On the Manage Profile Service page, click Start Profile Synchronization >> choose the “Start Full Synchronization” option
    3.On the Manage Profile Service page, click Configure Synchronization Timer Job >> click “Run Now” button
    4.On the Job Definitions page, find and click “User Profile Service Application – User Profile to SharePoint Full Synchronization” >> click “Run Now” button

    You could go to the Manage User Profile page to check resync whether successfully.

    18219-10.png


    @Leili Vazietan
    You can directly click “Comment” option under ”My Answered“ to put forward your opinions and thoughts about solution that I propose.

    0 comments No comments

2 additional answers

Sort by: Most helpful
  1. Echo Du_MSFT 17,116 Reputation points
    2020-08-17T07:28:04.723+00:00

    In SharePoint 2013, you could change a user Display Name with PowerShell. Run SharePoint 2013 Management Shell as administrator:

    Set-SPUser -Identity ‘accountname’ -DisplayName ‘newdisplayname’ –Web https://domain/sites/name  
    

    For Example:

    Set-SPUser -Identity ‘i:0#.w|contoso\administrator’ -DisplayName ‘user-0014’ –Web http://sp/sites/test1   
    

    Note: the prefix used in your environment may be different e.g.
    Claims based Authentication prefix i:0#.w|
    Forms Based Authentication prefix i:0#.f |

    @Leili Vazietan

    0 comments No comments

  2. Leili Vazietan 21 Reputation points
    2020-08-18T06:27:31.68+00:00

    hi

    can i do it in active directory?

    i changed the first name and last name in active directory but when log in the share point sit It had not changed and

    not updated

    pls help me

    0 comments No comments