/
/

Ways to add “Show Home” to the File Explorer’s Folder Options

by Francis Sevilleja, IT Technical Writer
Ways to add “Show Home” to the File Explorer’s Folder Options 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 File Explorer’s Home button provides quick access to frequently accessed folders, recommended documents, and recently opened files. Users can toggle the Home page by managing the “Show Home” option; however, this isn’t always present in Folder Options.

This guide will show you ways to make the “Show Home” option visible for all users. Additionally, we’ll discuss how to verify the configuration, key considerations, and solutions to common issues.

The “Show Home” option allows users to toggle Home in the File Explorer’s navigation pane. With one click, users can customize the File Explorer for quick file access or simpler navigation. This improves the navigation experience and boosts productivity by streamlining the File Explorer’s UI to match user preferences.

📌 Prerequisites:

  • Admin privileges
  • Windows 11 PC

📌 Recommended deployment strategies:

Click to Choose a Method

💻

Best for Individual Users

💻💻💻

Best for Enterprises

Method 1: Add the “Show Home” option in File Explorer through the Registry 
Method 2: Automate “Show Home” configurations using PowerShell scripts 
Method 3: Make the “Show Home” option visible via the Local Group Policy

Method 1: Add the “Show Home” option in File Explorer through the Registry

The Registry allows enforcement of system-wide changes, ensuring consistent settings for non-domain machines, especially those running Windows 11 Home editions.

⚠️ Warning: Changes in the Registry apply instantly, and misconfigurations can significantly impact system functionality and stability. (See ⚠️ Things to look out for.)

📌 Use Case: Administrators can ensure consistent visibility of Show Home for all users on devices with no Local Group Policy support.

📌 Prerequisite: Windows Registry backup.

  1. Press Win + R, type regedit, then press Ctrl + Shift + Enter.
  2. Navigate the following path: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\NavPaneOpen Registry Editor Find and Right Click Navpane select new and then key
  3. Right-click NavPane, select New > Key, and name it ShowHome.
  4. Right-click ShowHome, select New > DWORD (32-bit) value, and create the following values one by one:
    DWORD value nameValue data
    CheckedValue1
    DefaultValue1
    HKeyRoot0x80000001
    Id13
    Typecheckbox
    UncheckedValue0
  5. Right-click ShowHome, select New > String value, and create the following values one by one:

    String value name

    Value data

    RegPathSoftware\Classes\CLSID\{f874310e-b6b7-47dc-bc84-b9e6b38f5903}
    TextShow Home
    ValueNameSystem.IsPinnedToNameSpaceTree
  6. Close the Registry Editor and restart your device to apply the changes.

Method 2: Automate “Show Home” configurations using PowerShell scripts

Manually editing the Registry becomes more difficult and error-prone as you implement it for multiple endpoints. A workaround to automate Registry configurations is by scripting changes using PowerShell.

⚠️ Important: It’s crucial to execute the scripts outlined in this section exactly as written to avoid errors and misconfigurations. (See ⚠️ Things to look out for.)

📌 Use Case: Leverage PowerShell scripts to automate Registry changes across non-domain endpoints, ensuring consistent configurations while minimizing the risk of errors.

📌 Prerequisite: Windows Registry backup.

  1. Press Win + R, type PowerShell, and press Ctrl + Shift + Enter.
  2. Execute the following commands:
$path = “HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\NavPane\ShowHome”

New-Item -Path $path -Force

New-ItemProperty -Path $path -Name “CheckedValue” -PropertyType DWord -Value 1 -Force
New-ItemProperty -Path $path -Name “DefaultValue” -PropertyType DWord -Value 1 -Force
New-ItemProperty -Path $path -Name “HKeyRoot” -PropertyType DWord -Value 0x80000001 -Force
New-ItemProperty -Path $path -Name “Id” -PropertyType DWord -Value 13 -Force
New-ItemProperty -Path $path -Name “Type” -PropertyType String -Value “checkbox” -Force
New-ItemProperty -Path $path -Name “UncheckedValue” -PropertyType DWord -Value 0 -Force
New-ItemProperty -Path $path -Name “RegPath” -PropertyType String -Value “Software\Classes\CLSID\{f874310e-b6b7-47dc-bc84-b9e6b38f5903}” -Force
New-ItemProperty -Path $path -Name “Text” -PropertyType String -Value “Show Home” -Force
New-ItemProperty -Path $path -Name “ValueName” -PropertyType String -Value “System.IsPinnedToNameSpaceTree” -Force

  1. Close PowerShell and restart your device to apply the configuration.

Method 3: Make the “Show Home” option visible via the Local Group Policy

The Local Group Policy Editor lets administrators control policies to determine which settings users can access and configure.

📌 Use Cases: Administrators can use the Local Group Policy to ensure user access to the Folder Options in File Explorer. Additionally, this can be deployed as a GPO through the Group Policy Management Console (GPMC) for enterprise-wide deployments.

📌 Prerequisites: Windows 11 Pro, Enterprise, or Education editions.

  1. Press Win + R, type gpedit.msc, and press Ctrl + Shift + Enter.
  2. Go to: User Configuration > Administrative Templates > Windows Components > File Explorer
  3. Find and double-click Do not allow Folder Options to be opened from the Options button on the View tab of the ribbon.Find and double-click Do not allow Folder Options to be opened from the Options button on the View tab of the ribbon.
  4. Select Disabled or Not Configured to allow user access to Folder Options.Select Disabled or Not Configured to allow user access to Folder Options.
  5. Press Apply, then OK to apply the changes.
  6. Launch PowerShell and enter the following script to refresh the Local Group Policy: gpupdate /force

💡 Note: User Configuration settings apply per user. (See ⚠️ Things to look out for.)

Steps to verify if “Show Home” appears in the File Explorer

Follow these steps to check if the Show Home setting is visible within Folder Options:

  1. Open File Explorer and click the three-dot menu (•••) located on the upper-right.
  2. Select Options and press the View tab inside the resulting window.
    • If Options is inaccessible, go to Method 3 and set the target policy to Disabled or Not Configured.
  3. Scroll down within Advanced settings until you reach the Navigation pane section.
  4. Under the Navigation pane, look for the “Show Home” checkbox.

⚠️ Things to look out for

Risks

Potential Consequences

Reversals

Manually editing the RegistryRegistry changes apply instantly, and a misconfiguration can cause system instability and break device functionality.Back up the Windows Registry before making changes to easily roll back misconfigurations.
Executing inaccurate PowerShell scriptsInaccurate PowerShell scripts can lead to errors or misconfiguration of Registry values.Verify the syntax and accuracy of each command in a PowerShell script before executing.

Alternatively, you can copy and paste the scripts under Method 2 instead of manually inputting them.

Using a standard user account when modifying the HKEY_LOCAL_MACHINE (HKLM) hiveThe HKLM Registry hive hosts system-wide settings; using a standard account during configuration will result in an error.Before editing the HKLM, ensure that you have admin rights.

To do this, go to Settings > Accounts > Your info and check for the Administrator label below your username.

Deploying untested scripts and GPOsUntested configurations may contain faulty settings, and deploying them impulsively can introduce problems across your environment.Test scripts and GPOs locally to verify their effects on an endpoint before deploying across an environment.
Limited system-wide enforcement of per-user policy settingsThe target policy in Method 3 is located within the User Configuration node, which means it applies per-user.Create a group for the target users via lusermgr.msc, then apply the Local Group Policy to that group using MMC.

Considerations when managing “Show Home” in File Explorer

Adding or removing the “Show Home” checkbox can significantly impact navigation, user preferences, and system consistency. This section outlines key considerations to help you make the best configuration for your environment.

Impacts of adding or removing the Home page in File Explorer

Users can add Home to their navigation pane if “Show Home” is visible in the Folder Options. By clicking Home, users can quickly access their frequently used folders and recent files, improving their overall navigation experience.

However, some users prefer a minimalist interface for simpler navigation. If you want to declutter the navigation pane, then clearing the “Show Home” checkbox is the way. To prevent users from reversing this configuration, you can hide Folder Option using the Local Group Policy Editor.

Striking a balance between organizational policies and user preferences

Before deploying a configuration, consider how users in your environment interact with the navigation pane. Some may rely on the Home page for better file accessibility, while others may prefer a simpler UI. If you enforce a configuration, it’s advisable to still allow users to toggle “Show Home” to match their preference.

Allow users to add or remove the home page in File Explorer

Adding the “Show Home” option to Folder Options in File Explorer provides users with the ability to toggle the Home page. This enables them to customize their File Explorer’s navigation pane to match their preference.

You can make the “Show Home” option visible by modifying the Registry, and this can be automated using PowerShell. When making the change, also ensure that Folder Options is accessible to users by checking the Local Group Policy.

Related topics:

FAQs

You can add the Home page in File Explorer by doing the following steps:

  1. Launch File Explorer, press the three-dot menu (•••) in the toolbar, and select Options.
  2. Select the View tab and scroll down the Advanced settings field until you reach the Navigation Pane section.
  3. Select the checkbox beside the Show Home option.

Verify if the keys and values outlined are correctly configured as outlined in Method 1. Wrong Registry configurations can sometimes fail silently, resulting in no visible change even after a restart.

Afterwards, open the Local Group Policy and go to User Configuration > Administrative Templates > Windows Components > File Explorer. Set Do not allow Folder Options to be opened from the Options button on the View tab of the ribbon to Disabled or Not configured. Restart the device or Windows Explorer to apply all the changes.

You might also like

Ready to simplify the hardest parts of IT?