Windows OS Hub
  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2012
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu
  • Home
  • About

Windows OS Hub

  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2012
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu

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

February 20, 2023 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

How to Run Program without Admin Privileges and...

March 24, 2023

Configure Network Settings on Windows with PowerShell: IP...

March 24, 2023

Attaching Host USB Devices to WSL or Hyper-V...

March 20, 2023

Print Screen Key Not Working in Windows

March 17, 2023

Fix: Remote Desktop Services Is Currently Busy

March 15, 2023

Leave a Comment Cancel Reply

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

  • How to Run Program without Admin Privileges and Bypass UAC Prompt?

    March 24, 2023
  • Configure Network Settings on Windows with PowerShell: IP Address, DNS, Default Gateway, Static Routes

    March 24, 2023
  • Exchange Offline Address Book Not Updating in Outlook

    March 21, 2023
  • Attaching Host USB Devices to WSL or Hyper-V VM

    March 20, 2023
  • Sending an E-mail to a Microsoft Teams Channel

    March 17, 2023
  • How to Restore Deleted Users in Azure AD (Microsoft 365)?

    March 16, 2023
  • Fix: Remote Desktop Services Is Currently Busy

    March 15, 2023
  • Send-MailMessage: Sending E-mails with PowerShell

    March 14, 2023
  • Clear Cache and Temp Files in User Profiles on Windows (RDS) with PowerShell and GPO

    March 13, 2023
  • Prevent Users from Creating New Groups in Microsoft 365 (Teams/Outlook)

    March 6, 2023

Follow us

woshub.com
  • Facebook
  • Twitter
  • RSS
Popular Posts
  • How to Disable or Uninstall Internet Explorer (IE) in Windows?
  • Internet Time Synchronization Failed on Windows
  • Shutdown/Restart Windows using Command Prompt and PowerShell
  • Print Screen Key Not Working in Windows
  • MS SQL Server Setup Stucks on Install/Uninstall
  • Install Windows Subsystem for Linux (WSL 2) on Windows 10/11
  • Fix: Windows Needs Your Current Credentials Pop-up Message
Footer Logo

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


Back To Top