I contact Office 365 tech support for issue enabled "Authentication method policy (Preview)" but not show the new authentication methods appeared in my Office 365 tenant.
Below is tech support suggest me to use powershell for enable passwordless authentication method
- Search windows powershell in your computer ,right click powershell and choose run as an administrator
- To confirm whether you have this version installed ,run : Get-Module -Name AzureAD -ListAvailable
- If you currently have the Azure AD PowerShell module installed and it’s not at least version 2.0.2.5, you’ll need to uninstall it. To do this, run:
Uninstall-Module -Name AzureAd
- If you don’t have the Azure AD PowerShell module installed, or you’ve just uninstalled it, you’ll need to install it by running:
Install-Module -Name AzureADPreview
- Enabling Passwordless Authentication for a single Office 365 tenant, run:
Connect-AzureAD
New-AzureADPolicy -Type AuthenticatorAppSignInPolicy -Definition '{"AuthenticatorAppSignInPolicy":{"Enabled":true}}' -isOrganizationDefault $true -DisplayName AuthenticatorAppSignIn