
Unfortunately,I upgraded my computer last week. And I found I could not use PSE now.



Moderator: PSE Developer
Now let's see what we can find about cipher suite support on Windows 10:From the error message, we eventually can conclude that the client and the server could not agree on a cipher suite.
Thank you for reply! After I restarted my computer and ME3, I finialy understand what you say. I am very happy to tell you the method you posted worked well and I have already play the game several times without problem. Thank you very much!Erik JS wrote:I think I finally found out what's happening...
Yesterday, I found this:
https://stackoverflow.com/questions/466 ... ommunicateNow let's see what we can find about cipher suite support on Windows 10:From the error message, we eventually can conclude that the client and the server could not agree on a cipher suite.
https://msdn.microsoft.com/en-us/librar ... s.85).aspx
Comparing 1703 (Creators Update) with 1709 (Fall Creators Update), we can notice that TLS_RSA_WITH_RC4_128_SHA and TLS_RSA_WITH_RC4_128_MD5 were thrown into the "supported but not enabled by default" list. Enabling either of them or both fixes the communication between PSE and ME3.
I managed to track down the exact place in registry which needs to be modified:
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Cryptography\Configuration\SSL\00010002
Functions -> there'll be a list of cipher suites separated by commas, adding ",TLS_RSA_WITH_RC4_128_SHA,TLS_RSA_WITH_RC4_128_MD5" will be enough (must restart afterwards).
I'd like to ask anyone else to confirm that this fixes PSE under Windows 10 with Fall Creators Update.
I do not understand. What do I need to do?Erik JS wrote:All I can say is that this issue is currently under research. I don't know "when", but I intend to fix it.
Thank you so much.Erik JS wrote:If you have nothing there, then just create the key listing the necessary cipher suites:
Right click -> New string
Name: Functions
Value: TLS_RSA_WITH_RC4_128_SHA,TLS_RSA_WITH_RC4_128_MD5
Hey there, important double post!Erik JS wrote:If you have nothing there, then just create the key listing the necessary cipher suites:
Right click -> New string
Name: Functions
Value: TLS_RSA_WITH_RC4_128_SHA,TLS_RSA_WITH_RC4_128_MD5
Code: Select all
Get-TlsCipherSuite | Format-Table -Property Name
Code: Select all
Enable-TlsCipherSuite -Name 'TLS_RSA_WITH_RC4_128_SHA'
Enable-TlsCipherSuite -Name 'TLS_RSA_WITH_RC4_128_MD5'