Windows OS Hub
  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux

 Windows OS Hub / Windows 10 / Security Tab Missing from File/Folder Properties in Windows

March 13, 2024 Questions and AnswersWindows 10Windows 11

Security Tab Missing from File/Folder Properties in Windows

I faced the following issue: the Security tab in the properties of files and folders in Windows Explorer is no longer displayed on one of the computers running Windows 10. As a result, I cannot change the NTFS permissions on a file or folder, assign an owner, or view the resulting permissions from within File Explorer. A user can view/edit NTFS permissions in the command prompt only by using the icacls or Get-ACL/Set-ACL PowerShell cmdlets.

missing security tab in folder properties

First, make sure that the drive is formatted with the NTFS file system. If the drive is formatted as FAT32 or exFAT (now commonly used for USB flash drives), the Security tab will not be displayed (there are no ACLs on the objects of these file systems by-design).

You can get the file system type for available drives in Windows using the built-in PowerShell module that allows you to manage local disks and partitions.

get-volume

get-volume file system

In our example, all of the drives are formatted as NTFS drives.

Windows has a special GPO setting that allows hiding the Security tab from the Windows File Explorer. To make sure that the setting is enabled for the current user on the computer, use PowerShell to get the value of the NoSecurityTab registry parameter:

Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"|select NoSecurityTab

NoSecurityTab registry parameter

If the NoSecurityTab is set to 1, this means that the Security tab in the properties of files and folders in File Explorer is hidden from the user.

Check to see if this option is enabled by the Local Group Policy:

  1. Run the Local Group Policy Editor (gpedit.msc);
  2. Go to User Configuration -> Windows Components -> File Explorer;
  3. Change the value of the Remove Security Tab to Disabled or Not Configured;Remove Security Tab option in Group Policy
  4. Update the Group Policy settings on the computer using the gpresult /force command.

If the GPO setting is not configured and the Security tab is not displayed, try manually setting the value of the NoSecurityTab=1 registry option using Registry Editor (regedit.exe) or with the command below:

REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v Nosecuritytab /t REG_DWORD /d 0 /f

delete Nosecuritytab item from registry

You can also use rsop.msc and the console gpresult tool to check the resulting GPO settings that are applied to the user. The GPO setting may be applied from the domain GPO or multiple local group policy (MLGPO). Find the GPO and disable the Remove Security Tab option in it.

If the Security tab is still missing, check that the following keys are present in the registry. If they are missing, Windows File Explorer will not display the Security tab. Create the keys manually or using the REG file specified below. Create and apply fixsecuritytab.reg with the following code:

Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shellex\PropertySheetHandlers\{1f2e5c40-9550-11ce-99d2-00aa006e086c}]
[HKEY_CLASSES_ROOT\Directory\shellex\PropertySheetHandlers\{1f2e5c40-9550-11ce-99d2-00aa006e086c}]
[HKEY_CLASSES_ROOT\Drive\shellex\PropertySheetHandlers\{1f2e5c40-9550-11ce-99d2-00aa006e086c}]

Check that the Security tab is now displayed in the properties of the folder/file.

How to enable the Security tab in Explorer folder properties

If you see the error The requested security information is either unavailable or can’t be displayed on the Security tab, check that the file/folder name does not end with a space or a dot.
Securuty tab error: The requested security information is either unavailable or can’t be displayed
0 comment
0
Facebook Twitter Google + Pinterest
previous post
Export-CSV: Output Data to CSV File Using PowerShell
next post
Group Policy Management in Active Directory

Related Reading

Configure NTP Time Source for Active Directory Domain

May 6, 2025

How to Cancel Windows Update Pending Restart Loop

May 6, 2025

View Windows Update History with PowerShell (CMD)

April 30, 2025

Change BIOS from Legacy to UEFI without Reinstalling...

April 21, 2025

Remove ‘Your License isn’t Genuine’ Banner in MS...

April 21, 2025

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Categories

  • Active Directory
  • Group Policies
  • Exchange Server
  • Microsoft 365
  • Azure
  • Windows 11
  • Windows 10
  • Windows Server 2022
  • Windows Server 2019
  • Windows Server 2016
  • PowerShell
  • VMware
  • Hyper-V
  • Linux
  • MS Office

Recent Posts

  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025
  • Load Drivers from WinPE or Recovery CMD

    March 26, 2025
  • How to Block Common (Weak) Passwords in Active Directory

    March 25, 2025
  • Fix: The referenced assembly could not be found error (0x80073701) on Windows

    March 17, 2025
  • Exclude a Specific User or Computer from Group Policy

    March 12, 2025
  • AD Domain Join: Computer Account Re-use Blocked

    March 11, 2025
  • How to Write Logs to the Windows Event Viewer from PowerShell/CMD

    March 3, 2025
  • How to Hide (Block) a Specific Windows Update

    February 25, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • 0x80244010 Exceeded Max Server Round Trips: Windows Update Error
  • Shutdown/Restart Windows using Command Prompt and PowerShell
  • How to Force Remove a Printer That Won’t Uninstall on Windows
  • How to Completely Remove/Uninstall a Driver in Windows
  • Fix: Windows Update Tab (Button) is Missing from Settings
  • How to Disable or Uninstall Internet Explorer (IE) in Windows
  • Fix: Your IT Administrator Has Limited Access to Virus & Threat Protection
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top