4

I get this error when I connect with RDP This could be due to CredSSP encryption oracle remediation.

For more information, see https://go.microsoft.com/fwlink/?linkid=866660

How to solve it ?

P.S.
  • 15,970
  • 14
  • 62
  • 86
Roi
  • 43
  • 1
  • 3

2 Answers2

15

Microsoft made this bad change but I will solve it for you :-) Run cmd as Administrator (Search for cmd and right click with the mouse to choose RUN AS ADMINISTRATOR).

You can also use powershell admin. Copy and paste this command to run it and rate my answer if succeed :-)

REG ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System\CredSSP\Parameters\ /v AllowEncryptionOracle /t REG_DWORD /d 2

Asi
  • 395
  • 4
  • 13
-1

create a text file: rd_patch.reg

Paste following content, save and double-click it.

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\CredSSP]

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\CredSSP\Parameters] "AllowEncryptionOracle"=dword:00000002

Solution from: https://serverfault.com/a/911645

Bigto
  • 433
  • 1
  • 4
  • 7