/
/

How to Hide or Show the Family Options Page in Windows Security in Windows 11

by Richelle Arevalo, IT Technical Writer
How to Hide or Show the Family Options Page in Windows Security in Windows 11 blog banner image

Key points

Configuring the Family Options Page in Windows Security

  • The Family Options page in Windows Security is a portal for parents and guardians to manage family safety settings.
  • Hiding the feature is ideal for workplaces or non-family environments where it can be unnecessary.
  • Methods in managing the Windows Defender Security Center Family Options page:
    • Via Local Group Policy (per device)
    • Via Registry Editor (per machine)
    • Via Command Prompt
    • Via PowerShell
    • Via Group Policy Preferences
  • Prerequisites for this task include Windows 10 version 1709 or later, or Windows 11, administrator rights to adjust registry and policy settings, and familiarity with command-line tools, PowerShell scripting, or Group Policy Management.
  • Watch out for issues such as:
    • Editing the wrong registry path or key
    • Forgetting to restart Windows Security or reboot the system
    • Running PowerShell or CMD without admin privileges
    • Using Group Policy Preferences without linking the GPO to an OU
  • When configuring this setting, keep in mind that changes apply system-wide, there is no official ADMX template available, hiding the Family Options page only restricts access rather than disabling its features, and a system restart is required for the changes to take effect.

The Family Options page in Windows Security is designed to help parents manage safety settings and monitor family devices. However, in workplaces or non-family environments, this page may be unnecessary.

This guide walks you through multiple ways to show or hide the Windows Defender Security Center Family Options page, depending on what fits your setup.

📌 Recommended deployment strategies:

Click to Choose a Method

💻

Best for Individual Users

💻💻💻

Best for Enterprises

Method 1: Via Local Group Policy (per device)
Method 2: Via Registry Editor (per machine)
Method 3: Via Command Prompt
Method 4: Via PowerShell
Method 5: Via Group Policy Preferences

Methods to hide or show family options in Windows Security

Before using any method below, make sure you meet the following requirements:

📌 General prerequisites:

  • Windows 10 version 1709 or later, or Windows 11
  • Administrator rights to adjust registry and policy settings
  • Familiarity with command-line toolsPowerShell scripting, or Group Policy Management

Method 1: Via Local Group Policy (per device)

This is a direct and user-friendly approach to controlling the visibility of the Family Options page on a per-device basis.

📌 Use Cases: Best for standalone systems where Family Safety features are not used or needed, such as in office or kiosk setups.

📌 Prerequisites:

  • Only available on Windows 11 Pro, Enterprise, and Education editions.

Step-by-step:

  1. Press Win + R, type gpedit.msc, and click Enter to launch the Local Group Policy Editor.
  2. Navigate to: Computer Configuration > Administrative Templates > Windows Components > Windows Security > Family options
  3. Double-click Hide the Family Options area.
  4. Choose:
    • Enabled – Hides the Family Options page.
    • Disabled or Not Configured – Shows the Family Options page.
  5. Click OK.
  6. Restart Windows Security or your PC to apply the changes. (Read #2 in ⚠️ Things to look out for.)

Method 2: Via Registry Editor (per machine)

This method allows you to edit the Windows Registry directly, which is suitable for all Windows editions, including Home.

📌 Use Cases:

  • Ideal for systems where Group Policy Editor is unavailable (e.g., Windows Home).

📌 Prerequisites:

  • You must be signed in with an administrator account.

⚠️ Warning: Editing the registry can cause system issues. Create a backup before proceeding.

Step-by-step:

  1. Press Win + R, type regedit, and click Enter to open the Registry Editor.
  2. Navigate to: HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender Security Center\Family options
    • If the Family options key doesn’t exist:
      1. Right-click Windows Defender Security Center
      2. Select New > Key
      3. Name it Family options
  3. In the right pane, right-click > New > DWORD (32-bit) Value.
  4. Name it: UILockdown
  5. Set the value to:
  6. Close the Registry Editor and restart Windows Security or your PC. (Read #2 in ⚠️ Things to look out for.)

Method 3: Via Command Prompt

This is a quick command-line version of the registry edit used in Method 2. It’s ideal for automation, scripting, or quick remote edits.

📌 Use Cases:

  • Useful for batch deployments, login scripts, or when remotely managing devices via administrative tools.

📌 Prerequisites:

  • You must run Command Prompt as an administrator.

Step-by-step:

  1. Press Win + X and select Command Prompt (Admin) or Windows Terminal (Admin). (Read #3 in ⚠️ Things to look out for.)
  2. Run one of the following:
    • Hide the page:
      reg add “HKLM\SOFTWARE\Policies\Microsoft\Windows Defender Security Center\Family options” /v UILockdown /t REG_DWORD /d 1 /f
    • Show the page:
      reg delete “HKLM\SOFTWARE\Policies\Microsoft\Windows Defender Security Center\Family options” /v UILockdown /f
  3. Once done, restart Windows Security or your PC to confirm changes. (Read #2 in ⚠️ Things to look out for.)

Method 4: Via PowerShell

PowerShell provides a flexible option for manual control and automated deployments in environments that use scripts or remote management tools.

📌 Use Cases:

  • Best for provisioning scripts, system imaging, or remote configuration via Windows Management tools.

📌 Prerequisites:

  • You must run PowerShell as administrator.

Step-by-step:

  1. Press Win + S and search for PowerShell.
  2. Right-click Windows PowerShell and select Run as administrator. (Read #3 in ⚠️ Things to look out for.)
  3. Run one of the following:
    • Hide the page:
New-Item -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender Security Center\Family Options” -Force | Out-Null
Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender Security Center\Family Options” -Name “UILockdown” -Value 1 -Type DWord
    • Show the page:
Remove-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender Security Center\Family Options” -Name “UILockdown”
  1. Once done, restart Windows Security or your PC to apply the changes. (Read #2 in ⚠️ Things to look out for.)

Method 5: Via Group Policy Preferences (enterprise deployment)

This approach is for Active Directory (AD) environments where admins must deploy settings to multiple systems through Group Policy.

📌 Use Cases:

  • Ideal for centralized control in domain-based environments.

📌 Prerequisites:

Step-by-step:

  1. Open the Group Policy Management Console (GPMC).
  2. Navigate to: Computer Configuration > Preferences > Windows Settings > Registry
  3. Right-click Registry > New > DWORD Value.
  4. To hide:
    • Action: Update
    • Hive: HKEY_LOCAL_MACHINE
    • Key Path: SOFTWARE\Policies\Microsoft\Windows Defender Security Center\Family Options
    • Value Name: UILockdown
    • Value Type: REG_DWORD
    • Value Data: 1
  5. To show:
  6. Link the GPO to the target OU and run gpupdate /force. (Read #4 in ⚠️ Things to look out for.)
  7. Once done, restart Windows Security or your PC to apply the changes. (Read #2 in ⚠️ Things to look out for.)

⚠️ Things to look out for

RisksPotential ConsequencesReversals
1. Editing the wrong registry path or keyMay affect unrelated settings or cause UI issues in Windows Security.Delete or correct the affected registry key and reboot the system.
2. Forgetting to restart Windows Security or reboot the systemChanges won’t take effect.Restart Windows Security or reboot the PC.
3. Running PowerShell or CMD without admin privilegesCommands may silently fail or return access-denied errors.Re-run the terminal as administrator, then retry the command.
4. Using Group Policy Preferences without linking the GPO to an OUThe setting won’t apply to any devices.Ensure the GPO is linked to the target OU and run gpupdate /force on client machines.

Additional considerations when configuring the Windows Family Options page visibility

Here are key technical notes to keep in mind when managing the Family Options page in Windows Security:

Changes apply system-wide

This policy is stored under the HKEY_LOCAL_MACHINE registry hive, which means changes affect all users on the device. There is no way to apply this setting on a per-user basis.

No official ADMX template

Microsoft doesn’t currently provide a dedicated ADMX template for managing the visibility of the Family Options page. Policy deployment must be handled using Group Policy Preferences (GPP) or direct registry editing.

Hiding the page only blocks access

Hiding the Family Options page only removes access to it through the Windows Security app. It doesn’t disable Microsoft Family Safety features. Even if the page is hidden, family safety services will continue to run in the background.

Restart required

You must restart Windows Security or reboot the system for any changes to take effect. Applying the policy or registry change isn’t enough to enforce visibility status.

Manage the visibility of the Windows Defender Security Center Family Options page

While the Family Options page offers powerful parental control features, it may be unnecessary in non-family environments such as enterprise or education. Controlling its visibility allows organizations to tailor the interface based on operational needs.

The great thing is that Windows provides flexible deployment options for managing the Family Options page. These range from individual device configuration to organization-wide policy enforcement by using tools like Local Group Policy, Registry Editor, Command Prompt, PowerShell, and Group Policy Preferences.

Related topics:

FAQs

No. Disabling the page only removes access to the page within the Windows Security interface. The underlying Family Safety services continue to run in the background if they’re enabled on the Microsoft account, so resource usage remains the same.

No. Microsoft Family Safety is built into Microsoft accounts and cannot be fully disabled in Windows 11. The only way to stop its features is to remove the associated family group or child accounts online.

No. Hiding the Family Options page only prevents access to that section in the Windows Security app. Child accounts connected to a Microsoft Family group will still have parental control settings, screen time limits, and content filters applied as usual.

No. The visibility setting for the Family Options page is stored under the HKEY_LOCAL_MACHINE registry hive, which applies system-wide. Any change affects all user profiles on that device.

Organizations or IT admins may hide the Family Options page to simplify Windows Security, reduce confusion in non-family environments, and maintain a professional, distraction-free interface while keeping security features accessible.

You might also like

Ready to simplify the hardest parts of IT?