Share via

como solucionar Authentication unsuccessful, basic Authentication is disabled

SUCROAGRO SAS 0 Reputation points
2026-01-22T16:57:52.4966667+00:00

Buenos días,
por favor me podrían ayudar solucionando el error que esta generando mi Microsoft ya que necesito vincular mi programa de nomina SIESA con el correo y no me deja realizar la programación correcta no esta dejando generar pdf.

quedo atenta a su ayuda
correo: ******@hotmail.com

Microsoft Security | Microsoft Authenticator
0 comments No comments

1 answer

Sort by: Most helpful
  1. AI answer

    2026-01-22T16:58:01.4233333+00:00

    To resolve the "Authentication unsuccessful" error related to Basic Authentication being disabled, you can follow these steps:

    1. Enable Basic Authentication: If Basic Authentication has been disabled for your account, you may need to re-enable it. You can do this using PowerShell. Run the following command:
         Set-AuthenticationPolicy -Identity <Policy Name> -AllowBasicAuthPop -AllowBasicAuthImap -AllowBasicAuthSmtp
      
      Replace <Policy Name> with the appropriate policy name.
    2. Refresh Tokens: After enabling Basic Authentication, you may need to refresh the tokens for your user account. You can do this with the following command:
         Set-User -Identity <user account> -STSRefreshTokensValidFrom $([System.DateTime]::UtcNow)
      
      Replace <user account> with your actual user account.
    3. Check SMTP Settings: Ensure that the SMTP settings in your payroll program (SIESA) are correctly configured to use the email account associated with your Microsoft service.
    4. Disable Multi-Factor Authentication (MFA): If MFA is enabled on your account, you may need to disable it temporarily to allow Basic Authentication to work.
    5. Review Conditional Access Policies: Make sure that there are no Conditional Access policies that block Legacy Authentication for your account.

    If you continue to experience issues, consider reaching out to your IT department or Microsoft support for further assistance.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.