Dear All,
If you want to update the sharepoint register user email or any profile property please use the below command
1) Open the SharePoint Power shell command (Run as Administrator)
2) Place the below command and change the parameters
$web = get-spweb "SiteCollection URL"
$user = $web.EnsureUser("domain\username")
echo $user
Set-SPUser -Identity $user -Email "email@yourdomain.com" -Web $web
if you want to learn more here is the reference URL
http://alstechtips.blogspot.com/2015/09/sharepoint-2013-tip-edit-user-profile.html
Regards
3art Technology Experts
http://www.3art.tech
If you want to update the sharepoint register user email or any profile property please use the below command
1) Open the SharePoint Power shell command (Run as Administrator)
2) Place the below command and change the parameters
$web = get-spweb "SiteCollection URL"
$user = $web.EnsureUser("domain\username")
echo $user
Set-SPUser -Identity $user -Email "email@yourdomain.com" -Web $web
Same like that you can update any profile property if you like
3) Check your sharepoint profile now
if you want to learn more here is the reference URL
http://alstechtips.blogspot.com/2015/09/sharepoint-2013-tip-edit-user-profile.html
Regards
3art Technology Experts
http://www.3art.tech
Good.
ReplyDelete