Share via

Certificate error

Anonymous
2022-07-26T04:22:41+00:00

i am getting certificate error when opening outlook application. i have attached screen shot. please help me to fix this issue.

Outlook | Windows | Classic Outlook for Windows | For home

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

1 answer

Sort by: Most helpful
  1. Anonymous
    2022-07-26T07:32:06+00:00

    Dear Works (works),

    Good day! Thank you for posting to Microsoft Community. We are happy to help you.

    I understand that you have a concern regarding Certificate error when opening outlook application.

    Please try to Renew Exchange Server Certificate Using PowerShell;

    Display the full list of Exchange certificates and copy the ThumbPrint of the certificate you want to renew.

    Get-ExchangeCertificate | C:\ExchangeCertThumbPrint.txt
    

    For example, your certificate ThumbPrint is 1234512345123451234512345123451234512345.

    Use the following PowerShell command to create renewal request for your certificate and save it on a shared folder:

    Get-ExchangeCertificate -Thumbprint 1234512345123451234512345123451234512345| New-ExchangeCertificate -GenerateRequest -RequestFile "\\your_exch_srv_name\share\renewcert.req" -PrivateKeyExportable:$true
    

    After receiving a new certificate from CA, complete the certificate request:

    Import-ExchangeCertificate -FileName “\\your_exch_srv_name\share\company_new_sslcert.cer" -PrivateKeyExportable:$true
    

    Now enable this certificate for the required Exchange services:

    Enable-ExchangeCertificate –Thumbprint 9519495194951949519495194951949519495194 –Services "IIS, SMTP, POP, IMAP"
    

    It remains only to restart IIS on your Exchange server:

    Restart-Service W3SVC
    

    Kindly find this link for your reference: Renew an Exchange Server certificate.

    We look forward to your response. Thanks for your cooperation.

    Sincerely,

    Anesu | Microsoft Community Moderator

    ***Note: In the event that you're unable to reply to this thread, please ensure that your Email address is verified in the Community Website by clicking on Your Account Name > "My Profile" > "Edit Profile" > Add your Email Address > tick "Receive email notifications" checkbox > click on "Save".***

    Was this answer helpful?

    0 comments No comments