Soldato
- Joined
- 19 Feb 2007
- Posts
- 15,176
- Location
- Area 18, ArcCorp
So I was chatting with a friend this morning and he stumbled across a post on Reddit about a chap that put up instructions on how to disable/re-enable security mitigations, Apparently after disabling them, It works on the OS level via a batch file and disables ALL of them, He gained 10FPS playing at 1080P in 1 of the Civ games.
May be worth a look for people wanting to get the most out of their Intel chips on a non critical system i.e no bank details, Passwords etc....
I can't test this myself yet as I'm away until Tuesday but will be interesting to see results.
May be worth a look for people wanting to get the most out of their Intel chips on a non critical system i.e no bank details, Passwords etc....
Make a batch file with the following: @Echo off reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v FeatureSettingsOverride /t REG_DWORD /d 3 /f reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v FeatureSettingsOverrideMask /t REG_DWORD /d 3 /f
It disables all the mitigations, and likely will for the future mitigations that Microsoft will publish. Run this batch file as administrator.
If you want to turn everything back on, make a batch file with the following: @Echo off reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v FeatureSettingsOverride /t REG_DWORD /d 72 /f reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v FeatureSettingsOverrideMask /t REG_DWORD /d 3 /f
In case you wish to turn on all mitigations, and additionally disable HT, then replace "72" on the 3rd line with "8264".
I can't test this myself yet as I'm away until Tuesday but will be interesting to see results.
Last edited: