• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Nuke_Bloodaxe
    N
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 1
    • Best 0
    • Controversial 0
    • Groups 0

    Nuke_Bloodaxe

    @Nuke_Bloodaxe

    0
    Reputation
    1
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Nuke_Bloodaxe Unfollow Follow

    Latest posts made by Nuke_Bloodaxe

    • RE: SSL Issue srvpublic.crt

      @jbandy
      I ran into the same issue myself and did a bit of research. It appears it is a problem with the .Net Framework not using more secure SSL/TLS protocols, which can be enabled.

      So, after enabling them, the very issue you have encountered above was fixed.
      You have to add two registry key value in windows:

      Using Powershell:

      Set-ItemProperty -Path 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\.NetFramework\v4.0.30319' -Name 'SchUseStrongCrypto' -Value '1' -Type DWord
      Set-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\.NetFramework\v4.0.30319' -Name 'SchUseStrongCrypto' -Value '1' -Type DWord
      

      Or manually using regedit find:

      HKey_Local_Machine\SOFTWARE\Wow6432Node\Microsoft\.NetFramework\v4.0.30319
      

      Add a 32-bit DWord, called

      SchUseStrongCrypto
      

      Modify its value to 1.

      Then repeat the same for:

      HKey_Local_Machine\SOFTWARE\Microsoft\.NetFramework\v4.0.30319
      

      After those values are set, you can restart the Fog service on the Windows machine, and it should work.

      I hope this helps; apologies for the janky post, first time posting here. @Sebastian-Roth You may find this useful for your erratia and troubleshooting section regarding the client. It might also be possible to check and set these values via the client installer in the future.

      posted in FOG Problems
      N
      Nuke_Bloodaxe