Microsoft Graph API Reset User Password
According to the documentation, we would need User.ReadWrite.All
in Azure Active Directory Graph. But it's not present. And the only other option is to provide Company Administrator
role to the app. Unfortunately this role can't be given via web site.
We would need a user in the directory, we want to reset password or delete user from. And at-least temporarily, this user needs to be Global Adminitrator
. We didn't try with other roles, as this was a one time requirement. And once the task was done, we deleted the newly created user.
$Msolcred = Get-credential # login with the GA user
Connect-MsolService -Credential $Msolcred
Get-MsolServicePrincipal | ft DisplayName, AppPrincipalId -AutoSize # this is not required, but to check the service principals only