/
/

How to Hide or Show the Device Security Page in Windows Security

by Stela Panesa, Technical Writer
How to Hide or Show the Device Security Page in Windows Security blog banner image

Instant Summary

This NinjaOne blog post offers a comprehensive basic CMD commands list and deep dive into Windows commands with over 70 essential cmd commands for both beginners and advanced users. It explains practical command prompt commands for file management, directory navigation, network troubleshooting, disk operations, and automation with real examples to improve productivity. Whether you’re learning foundational cmd commands or mastering advanced Windows CLI tools, this guide helps you use the Command Prompt more effectively.

The Device Security page in Windows Security is a directory of your system’s primary security features. It contains detailed configurations of key functionalities such as core isolation, secure boot, and the Trusted Platform Module (TPM) chip.

Power users find this page informative, but IT administrators think otherwise.

For them, having access to this much security information in managed environments only creates confusion for end users.

What’s more alarming is that it can increase the risk of user interference. As a result, some organizations choose to hide the page altogether.

This guide will show you how to enable and disable the Device Security page in Windows Security.

How to hide or show the Device Security page in Windows 11

You can’t toggle the Device Security page in Windows Settings or Windows Security, but you can use other built-in tools to configure it.

📌 Prerequisites:

  • Operating System. Your computer should run on Windows 11 Pro, Enterprise, and Education.
  • Administrative Rights. You need administrative privileges for the configurations to work.

📌 Recommended deployment strategies:

Click to Choose a Method 💻

Best for Individual Users

💻💻💻

Best for Enterprises

Method 1: Via Registry Editor
Method 2: Using a PowerShell script
Method 3: Using a .reg file

💡Note: Hiding the Device security page in Windows Security will not disable your system’s security features; it will only change its UI.

Method 1: Hide or show via the Registry Editor

📌 Use Case: This method is ideal for power users who want to make quick local changes.

  1. Press Win + R, type regedit, and press Enter.
  2. Navigate to:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Security Health\DeviceSecurity

  1. Create or modify the following DWORD (32-bit) value:

Name: HideDeviceSecurityPage

Value:

    1. 1 = Hide the Device security page
    2. 0 = Show the Device security page
  1. Restart your system or sign out to apply the changes.

💡 Important: Registry misconfigurations can cause system instability. Check out the Things to look out for table for the potential risks of using this method.

Method 2: PowerShell script for automation

📌 Use Case: This method is best for implementing configurations via deployment tools.

  1. Hide the Device Security page:

New-Item -Path "HKLM:\SOFTWARE\Microsoft\Windows Security Health\DeviceSecurity" -Force | Out-Null

Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows Security Health\DeviceSecurity" `

-Name "HideDeviceSecurityPage" -Value 1

  1. Show the Device Security page:

Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows Security Health\DeviceSecurity" `

-Name "HideDeviceSecurityPage" -Value 0

Method 3: Configure using a .reg file

📌 Use Case: This method is recommended for bulk deployment across multiple systems.

  1. Hide the page:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Security Health\DeviceSecurity]

"HideDeviceSecurityPage"=dword:00000001

  1. Show the page:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Security Health\DeviceSecurity]

"HideDeviceSecurityPage"=dword:00000000

Save it as a .reg file and run it with administrative privileges.

⚠️ Things to look out for

Keep these pitfalls in mind when following our guide.

Risks Potential consequences Reversal
Incorrect registry configuration Adding the wrong keys to the Registry can cause system instability. Back up your registry before making any changes.
Inconsistent policy enforcement Some users may still see specific parts of Windows Security. Consider implementing additional UI restrictions in Group Policy.
Running scripts with no administrative rights Running a script or a .reg file Make sure you’re signed in as an administrator before running Registry Editor or PowerShell.
Wrong file extensions If a .reg file has the wrong line ending, it won’t execute properly. Check if your .reg file is saved with a .reg extension before deployment.

Why you should consider hiding the Device Security page

Hiding the Device Security page in the Windows Security app can:

  • Prevent tampering and confusion from advanced system settings. Users are less likely to make advanced security configurations when they can’t access those options.
  • Reduce exposure of sensitive information on shared or kiosk devices. Hiding the Device Security page also helps maintain privacy in shared environments. It prevents people from seeing or interacting with your system’s hardware-based protections.
  • Simplify the user interface in managed or restricted environments. With fewer advanced system settings in sight, the Windows Security app will be much easier to navigate for users with limited permissions.
  • Support compliance with organizational and industry visibility standards. Some organizations are required to keep specific system information hidden from end users. Disabling the Device Security page in Windows Security will help you comply with these standards.

Keep your system’s security details private by hiding the Device Security page in Windows Security

The Device Security page in Windows Security is designed to keep users informed, but leaving it visible in managed or shared environments isn’t the best idea. Having access to such detailed information can overwhelm users or, worse, tempt them to tinker with settings they shouldn’t change.

Keeping this page hidden will reduce confusion, prevent accidental misconfigurations, and improve the overall user experience.

Related topics:

FAQs

The Device Security page in the Windows Security app allows you to manage your computer’s key security features. It contains different sections, each highlighting a specific hardware-based protection functionality.

As previously stated, you can hide the Device Security page using the Registry Editor. You can also deploy this setting across multiple devices using a PowerShell script or a .reg file.

You might also like

Ready to simplify the hardest parts of IT?

NinjaOne Terms & Conditions

By clicking the “I Accept” button below, you indicate your acceptance of the following legal terms as well as our Terms of Use:

  • Ownership Rights: NinjaOne owns and will continue to own all right, title, and interest in and to the script (including the copyright). NinjaOne is giving you a limited license to use the script in accordance with these legal terms.
  • Use Limitation: You may only use the script for your legitimate personal or internal business purposes, and you may not share the script with another party.
  • Republication Prohibition: Under no circumstances are you permitted to re-publish the script in any script library belonging to or under the control of any other software provider.
  • Warranty Disclaimer: The script is provided “as is” and “as available”, without warranty of any kind. NinjaOne makes no promise or guarantee that the script will be free from defects or that it will meet your specific needs or expectations.
  • Assumption of Risk: Your use of the script is at your own risk. You acknowledge that there are certain inherent risks in using the script, and you understand and assume each of those risks.
  • Waiver and Release: You will not hold NinjaOne responsible for any adverse or unintended consequences resulting from your use of the script, and you waive any legal or equitable rights or remedies you may have against NinjaOne relating to your use of the script.
  • EULA: If you are a NinjaOne customer, your use of the script is subject to the End User License Agreement applicable to you (EULA).