That feature does not exist in Azure. I know many would love to see this.
You can add your opinion at Azure UserVoice and give some feedback.
https://feedback.azure.com/forums/34192--general-feedback?category_id=64938
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Even though we have enabled user self-service features for password resets using Azure SSPR, there are times were a user still needs to call the helpdesk. In order for the helpdesk to verify the user is who they say they are, we have to ( using another tool) require the user to answer security questions which are only used to verify the user. The Helpdesk is required to be able to see the users answer, allowing the Heskdesk person to challenge the user for the answer.
It would be nice to get away from this and allow a Helpdesk person the ability to push a MFA notification to a MFA registered user. Is this something on your road-map? I know that other MFA products like Dou offer this. I have looked through many forums and have not seen an answer to this yet.
any help would be appreciated.
Kind regards.
That feature does not exist in Azure. I know many would love to see this.
You can add your opinion at Azure UserVoice and give some feedback.
https://feedback.azure.com/forums/34192--general-feedback?category_id=64938
Hi James,
The MFA process can be triggered using Powershell. I created a simple script to trigger the user to validate themselves and then for it to send helpdesk a mail:
$AADLogin = Connect-AzureAD
$AADAccount = $AADLogin.Account
$AADuser = Get-AzureADUser -Filter "userPrincipalName eq '$AADAccount'"
$AADUserManager = Get-AzureADUserManager -ObjectId $AADUser.ObjectId
...
Send-Mailmessage -smtpServer "smtpservr" -Port 587 -UseSsl -from $AADinfo.Account -to "serviceDesk email" -subject 'User Authenticated' -body 'User is valid' -Credential $MailCredentials