Thursday 3 September 2015

How to disable FIPS using PowerShell

I always forget about this, so I thought I would add myself a remainder

FIPS can be disabled by editing the registry and restarting the server:
New-ItemProperty - Path HKLM\System\CurrentControlSet\Control\Lsa\FIPSAlgorithmPolicy -name Enabled -value 0; Restart-Computer -Force



4 comments:

  1. There is an extra space before the Path parameter. It should be -Path

    ReplyDelete
  2. Thanks for this. It helped me get old software working on a server. Note, there is no need to restart the computer, just updating the registry setting is enough.

    ReplyDelete
  3. Wrong, buzzzz. the path is HKLM:\System\CurrentControlSet\Control\Lsa\FIPSAlgorithmPolicy . you left out the colon

    ReplyDelete