Hi @Ramesh Mandala
Thank you for posting your question in the Microsoft Q&A forum.
Based on the information provided, I understand that you are encountering the error "The request was aborted: Could not create SSL/TLS secure channel" while trying to fetch an OData feed from a secure external REST endpoint using Excel 2016, despite having added the Server CA certificate to the Microsoft CA trust store.
According to my research, this error typically occurs due to issues with SSL/TLS protocol negotiation, certificate trust, or underlying system configurations in Excel 2016. Have you tried the above troubleshooting steps? If the issue persists, please consider the additional information below.
As a moderator, I do not have the specific tools to reproduce your exact environment. However, please try the following steps. Please restart Excel after making any changes and check the OData connection after each step.
-Check Certificate Installation Scope
Ensure that the server's Root CA certificate (and any intermediate certificates) is installed in the Trusted Root Certification Authorities store of the Local Computer account, not just the Current User account. Excel and Power Query often require system-level trust for these operations.
Check the endpoint URL using Internet Explorer (run as Administrator). Verify if the browser trusts the certificate without any warnings. Also, ensure that no Intermediate CA is missing from the certificate chain.
-Enable TLS 1.2 via Registry
Excel 2016 relies on the .NET Framework. You may need to force the use of strong cryptography to enable TLS 1.2. Open Registry Editor (regedit.exe) as an administrator and add/modify the following keys:
- For 64-bit and 32-bit processes:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\v4.0.30319
"SchUseStrongCrypto"=dword:00000001
- For 32-bit processes on 64-bit systems:
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\.NETFramework\v4.0.30319
"SchUseStrongCrypto"=dword:00000001
If you are using a 64-bit system, ensure both keys above are configured.
Important: Please make sure to back up your registry before making any changes to avoid issues.
Let me know if this helps!
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.