Type something to search...
How to activate Microsoft 365 Passkey in Entra ID

How to activate Microsoft 365 Passkey in Entra ID


Definition

Microsoft 365 Passkey is an authentication method that replaces passwords with more secure options like facial recognition, fingerprint, or a PIN.


Prerequisites

Licenses required

  • Microsoft 365 (all editions supporting modern authentication).

Administrator role

  • An account with the Global Administrator or Security Administrator role to access the Microsoft Entra Admin Center.

Others

  • Users must have Microsoft Authenticator (MFA) enabled.
  • Updated to the latest Microsoft Authenticator app (version 6.8.7 or later).
  • Requires at least Android 14 or iOS 17 and above.
  • Mobile and desktop must be connected to the Internet and have Bluetooth enabled (multi-device authentication).

Step 1 : Sign in to the Microsoft Entra Admin Center

Sign in to the Microsoft Entra Admin Center by opening your web browser to https://entra.microsoft.com.


Step 2 : Activate Microsoft 365 Passkey

In the left menu, click Protection, then Authentication methods.

Click Passkey (FIDO2) to activate the service and the users concerned.

image

Click Configure, and enable all options.

image

You can also enable the service via the following Graph PowerShell script:

Connect-MgGraph -Scopes "Policy.ReadWrite.AuthenticationMethod"
$params = @{
    "@odata.type"  = "#microsoft.graph.fido2AuthenticationMethodConfiguration"
    id             = "Fido2"
    State          = "enabled"
    includeTargets = @(
        @{
            id         = "all_users"
            targetType = "group"
        }
    )
    excludeTargets                   = @(
    )
    isSelfServiceRegistrationAllowed = $true
    isAttestationEnforced            = $true
    keyRestrictions                  = @{
        isEnforced      = $true
        enforcementType = "Allow"
        aaGuids         = @(
            "90a3ccdf-635c-4729-a248-9b709135078f",
            "de1e552d-db1d-4423-a619-566b625cdc84"
        )
    }
}
Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId "Fido2" -BodyParameter $params

Conclusion

You now know how to enable Microsoft 365 Passkey for passwordless login management.


Sources

Microsoft Learn - Activate Microsoft 365 Passkey


Did you enjoy this post ? If you have any questions, comments or suggestions, please feel free to send me a message from the contact form.

Don’t forget to follow us and share this post.

Related Posts

Email verification of external Teams participants

Email verification of external Teams participants

Introduction Microsoft Teams Premium introduces a new feature to enhance the security and reliability of your meetings: email verification for external participants. This feature allows mee

Read More
How to sign in with Passkey to Microsoft 365

How to sign in with Passkey to Microsoft 365

Definition Microsoft 365 Passkey is an authentication method that replaces passwords with more secure options like facial recognition, fingerprint, or a PIN.Prerequisites **

Read More
How to enable LAPS on the MTR Admin account via Intune

How to enable LAPS on the MTR Admin account via Intune

Definition Microsoft's LAPS (Local Administrator Password Solution) is a free tool designed to improve password security for local administrator accounts on workstations, servers and al

Read More
How to enable password writeback in Entra ID

How to enable password writeback in Entra ID

Introduction In an organization configured as hybrid with Microsoft cloud, user accounts are created in the on-premises Active Directory and are synchronized with Microsoft Entra ID. In

Read More
Impact analysis of Entra conditional access policies

Impact analysis of Entra conditional access policies

Introduction Conditional access in Entra is a security policy that allows administrators to control access to applications and resources based on specific conditions. These conditions can i

Read More
How to create a Windows local admin account via Intune LAPS

How to create a Windows local admin account via Intune LAPS

Introduction I wrote an article last February on how to replace the password of your MTR's local account using LAPS (Local Administrator Password Solution) in Intune. I concluded my article

Read More
New security approach for non-compliant emails

New security approach for non-compliant emails

Introduction Microsoft has announced a major update to Defender for Office 365 that strengthens email security by improving the handling of non-RFC compliant emails. This initiative is

Read More