Below powershell command is used for
updating the users profile emailaddress.
$user = Get-SPUser domain\username -web
http://yourdomain.com
$user.Email
$user.Email
= "[email protected]"
$user.Update()
Loading
Below powershell command is used for
updating the users profile emailaddress.
$user = Get-SPUser domain\username -web
http://yourdomain.com
$user.Email
$user.Email
= "[email protected]"
$user.Update()
Join the conversation! Your thoughts help the community grow.