FeatureSettingOverride Registry value update

Hriday Saha 146 Reputation points
2022-06-15T05:59:20.087+00:00

if i change the registry value of this following path

System\currentcontrolset\Control\SessionManager\MemoryManagement\FeatureSettingsOverrideMask:0x00000003(3)

System\currentcontrolset\Control\SessionManager\MemoryManagement\FeatureSettingsOverride:0x00000003(3)

What will be the actuall changes in windows server 2019.

Need your expertise on it.

Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
13,564 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Limitless Technology 39,786 Reputation points
    2022-06-15T15:22:17.947+00:00

    Hello

    Thank you for your question and reaching out. I can understand you are having query related to Registry settings.

    To disable mitigations for CVE-2017-5715 (Spectre Variant 2) and CVE-2017-5754 (Meltdown)

    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

    Note: Setting FeatureSettingsOverrideMask to 3 is accurate for both the "enable" and "disable" settings.

    Reference :
    https://support.microsoft.com/en-us/topic/kb4072698-windows-server-and-azure-stack-hci-guidance-to-protect-against-silicon-based-microarchitectural-and-speculative-execution-side-channel-vulnerabilities-2f965763-00e2-8f98-b632-0d96f30c8c8e

    ---------------------------------------------------------------------------------------------------------------------------------------------------

    --If the reply is helpful, please Upvote and Accept as answer--

    1 person found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.