@Luc Tran
Thank you for your post!
If you're requiring MFA via Conditional Access Policy, you can reset/require re-registration for a users MFA settings, via the Azure Portal or PowerShell. As of right now, you can do this either with Global Admin permissions, Authentication Admin permissions (only works on non-admin users), or Privileged Authentication Administrator (can manage all users to include global admin).
When you mention "unblock" if you're referring to unblocking a user within AzureAD MFA settings under the Security tab, our documentation mentions that an Admin can unblock the user's account. Using our roles and permissions documentation, I'd recommend testing this option out with either the Authentication admin or Privileged Authentication Admin to see if this feature works with those two roles.
Require re-require MFA: Reset-MsolStrongAuthenticationMethodByUpn
Connect-MsolService -AzureEnvironment AzureCloud
$User = Get-MSolUser -UserPrincipalName "******@company.onmicrosoft.com"
$User.StrongAuthenticationMethods
Reset-MsolStrongAuthenticationMethodByUpn -UserPrincipalName "******@company.onmicrosoft.com"
If you have any other questions, please let me know.
Thank you for your time and patience throughout this issue.
----------
Please remember to "Accept Answer" if any answer/reply helped, so that others in the community facing similar issues can easily find the solution.