Does the app work for non-microsoft users?
whihathac opened this issue · 5 comments
whihathac commented
jmorenab commented
Hi, you can add this registry keys:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft.NETFramework\v4.0.30319]"SchUseStrongCrypto"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft.NETFramework\v4.0.30319]"SchUseStrongCrypto"=dword:00000001
PhilippCh commented
Would this also work for someone using .NET 6? In that case, I should probably change the version in the Registry path, right?
JBoman32768 commented
Put this in a .REG file and merge it: (Famous last words)
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\v4.0.30319]
"SchUseStrongCrypto"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\.NETFramework\v4.0.30319]
"SchUseStrongCrypto"=dword:00000001
whihathac commented
Thanks it worked! (Forgot to reply!)
KshitijAroraMS commented