Last active
March 11, 2018 15:13
-
-
Save arjancornelissen/cb4b76b18522de4d926ce1f4adbf3ec2 to your computer and use it in GitHub Desktop.
Set the SharePoint user profile property 'CellPhone'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# You need to be connected to the tenant admin site and Azure AD | |
$User = Get-AzureADUser -SearchString "[email protected]" | |
Set-PnPUserProfileProperty -Account $user.UserPrincipalName -PropertyName "CellPhone" -Value $user.mobile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment