A cloud-based identity and access management service for securing user authentication and resource access
Hello MelvinMACHADO-3120
Thank you for reaching out to Microsoft Q&A.
This behavior is coming from a custom Windows Credential Provider that’s been installed on your machines (most likely the Azure MFA “Windows Logon” adapter or a similar SMS/Email OTP provider). Windows will always use the first credential provider in its enumeration order as the “default” logon UI, so even though you disabled the CLSID and tried forcing the Password provider, after a reboot the SMS/Email provider simply re-registers itself and jumps back to the top of the list.
Here’s how you can permanently disable or remove it:
- Uninstall the Windows Logon / Azure MFA adapter • On each machine (or via your software deployment tool), run the uninstall for the adapter you originally deployed (e.g. from “Programs and Features” or via the MFA Server installer’s Windows logon component). • Once uninstalled, the SMS/Email tile will disappear and Windows will fall back to your standard username/password provider.
- (Alternative) Registry-disable the provider
- Open regedit and navigate to: HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\Credential Providers{C5D7540A-CD51-453B-B22B-05305BA03F07}
- On 64-bit Windows also check under: HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Authentication\Credential Providers{C5D7540A-CD51-453B-B22B-05305BA03F07}
- In each location, create a DWORD value named “Disabled” and set it to 1.
- Reboot. Windows will skip that provider entirely and your Password provider ({60B78E88-EAD8-445C-9CFD-0B87F74EA6CD}) will become the default.
- (Optional) Use a Credential Provider Filter If you need more granular control you can also install/configure the Microsoft-supplied “Credential Provider Filter” and explicitly exclude the SMS/Email GUID so it never shows up at logon. See the MFA Server docs under “Windows Logon adapter → Credential Provider Filter” for the filter GUID and sample exclusion list.
Hope that helps get you back to plain username/password by default!
If the answer is helpful, kindly upvote it. If you have extra questions about this answer, please click "Comment".