Accounts Add "Reset Permissions" to Context Menu in Windows 11


Owner_banner.png

This tutorial will show you how to add or remove the "Reset Permissions" context menu to reset effective permissions of files and folders back to their default inherited permissions in Windows 10 and Windows 11.

On NTFS and ReFS volumes, you can set security permissions on files and folders. These permissions grant or deny access to the files and folders.

Every container (ex: folder) and object (ex: file) on the PC has a set of access control information attached to it. Known as a security descriptor, this information controls the type of access allowed to users and groups. The security descriptor is automatically created along with the container or object that is created.

When you are a member of a group (ex: "Administrators") that is associated with an object, you have some ability to manage the permissions on that object. For those objects you own, you have full control.

Permissions are defined within an object's security descriptor. Permissions are associated with, or assigned to, specific users and groups. For example, for the file Temp.dat, the built-in Administrators group might be assigned Read, Write, and Delete permissions, while the Backup Operators group might be assigned Read and Write permissions only.

Each assignment of permissions to a user or group is represented in the system as an access control entry (ACE). The entire set of permission entries in a security descriptor is known as a permission set or access control list (ACL). Thus, for a file named Temp.dat, the permission set includes two permission entries, one for the built-in Administrators group and one for the Backup Operators group.

There are two types of permissions: explicit permissions and inherited permissions.
  • Explicit permissions are those that are set by default on non-child objects when the object is created, or by user action on non-child, parent, or child objects.
    See also: Change Permissions of File, Folder, Drive, or Registry Key for Users and Groups in Windows 10/11
  • Inherited permissions are those that are propagated to an object from a parent object. Inherited permissions ease the task of managing permissions and ensure consistency of permissions among all objects within a given container.
    • Inherited Deny permissions do not prevent access to an object if the object has an explicit Allow permission entry.
    • Explicit permissions take precedence over inherited permissions, even inherited Deny permissions.
By default, objects within a container inherit the permissions from that container when the objects are created. For example, when you create a folder called MyFolder, all subfolders and files created within MyFolder automatically inherit the permissions from that folder. Therefore, MyFolder has explicit permissions, while all subfolders and files within it have inherited permissions.

Explicit_and_Inherited_permissions.png


You must be signed in as an administrator to add, remove, and use the "Reset Permissions" context menu.



EXAMPLE: "Reset Permissions" in context menu of files and folders

In Windows 11, you will need to click/tap on Show more options first by default, then click/tap on Reset Permissions.


Reset_Permisions_of_file.png
Reset_Permisions_of_folder.png



Here's How:

1 Do step 2 (add), step 3 (add w/pause), or step 4 (remove) below for what you want.

2 Add "Reset Permissions" to Context Menu

A) Click/tap on the Download button below to download the .reg file below, and go to step 5 below.​

Add_Reset_Permissions_to_context_menu.reg


(Contents of REG file for reference)
Code:
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\*\shell\ResetPermissions]
"MUIVerb"="Reset Permissions"
"HasLUAShield"=""
"NoWorkingDirectory"=""
"Position"="middle"
"Extended"=-

[HKEY_CLASSES_ROOT\*\shell\ResetPermissions\command]
@="powershell -windowstyle hidden -command \"Start-Process cmd -ArgumentList '/c icacls \\\"%1\\\" /reset' -Verb runAs\""

[HKEY_CLASSES_ROOT\Directory\shell\ResetPermissions]
"MUIVerb"="Reset Permissions"
"HasLUAShield"=""
"NoWorkingDirectory"=""
"Position"="middle"
"Extended"=-
"SubCommands"=""

[HKEY_CLASSES_ROOT\Directory\shell\ResetPermissions\shell\001flyout]
"MUIVerb"="Reset permissions of this folder only"
"HasLUAShield"=""

[HKEY_CLASSES_ROOT\Directory\shell\ResetPermissions\shell\001flyout\command]
@="powershell -windowstyle hidden -command \"Start-Process cmd -ArgumentList '/c icacls \\\"%1\\\" /reset' -Verb runAs\""

[HKEY_CLASSES_ROOT\Directory\shell\ResetPermissions\shell\002flyout]
"MUIVerb"="Reset permissions of this folder, subfolders and files"
"HasLUAShield"=""

[HKEY_CLASSES_ROOT\Directory\shell\ResetPermissions\shell\002flyout\command]
@="powershell -windowstyle hidden -command \"Start-Process cmd -ArgumentList '/c icacls \\\"%1\\\" /reset /t /c /l' -Verb runAs\""

3 Add "Reset Permissions" with Pause to Context Menu

This option does the same as step 2, except includes pausing the command when you use the "Reset Permissions" context menu to be able to see the command results. This can be handy to verify if resetting permissions was successfully processed or not.

Reset_Permissions_pause.png


A) Click/tap on the Download button below to download the .reg file below, and go to step 5 below.​

Add_Reset_Permissions_with_Pause_to_context_menu.reg


(Contents of REG file for reference)
Code:
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\*\shell\ResetPermissions]
"MUIVerb"="Reset Permissions"
"HasLUAShield"=""
"NoWorkingDirectory"=""
"Position"="middle"
"Extended"=-

[HKEY_CLASSES_ROOT\*\shell\ResetPermissions\command]
@="powershell -windowstyle hidden -command \"Start-Process cmd -ArgumentList '/c icacls \\\"%1\\\" /reset & pause' -Verb runAs\""

[HKEY_CLASSES_ROOT\Directory\shell\ResetPermissions]
"MUIVerb"="Reset Permissions"
"HasLUAShield"=""
"NoWorkingDirectory"=""
"Position"="middle"
"Extended"=-
"SubCommands"=""

[HKEY_CLASSES_ROOT\Directory\shell\ResetPermissions\shell\001flyout]
"MUIVerb"="Reset permissions of this folder only"
"HasLUAShield"=""

[HKEY_CLASSES_ROOT\Directory\shell\ResetPermissions\shell\001flyout\command]
@="powershell -windowstyle hidden -command \"Start-Process cmd -ArgumentList '/c icacls \\\"%1\\\" /reset & pause' -Verb runAs\""

[HKEY_CLASSES_ROOT\Directory\shell\ResetPermissions\shell\002flyout]
"MUIVerb"="Reset permissions of this folder, subfolders and files"
"HasLUAShield"=""

[HKEY_CLASSES_ROOT\Directory\shell\ResetPermissions\shell\002flyout\command]
@="powershell -windowstyle hidden -command \"Start-Process cmd -ArgumentList '/c icacls \\\"%1\\\" /reset /t /c /l & pause' -Verb runAs\""

4 Remove "Reset Permissions" from Context Menu

This is the default setting.


A) Click/tap on the Download button below to download the .reg file below, and go to step 5 below.​

Remove_Reset_Permissions_from_context_menu.reg


(Contents of REG file for reference)
Code:
Windows Registry Editor Version 5.00

[-HKEY_CLASSES_ROOT\*\shell\ResetPermissions]

[-HKEY_CLASSES_ROOT\Directory\shell\ResetPermissions]

5 Save the .reg file to your Desktop.

6 Double click/tap on the downloaded .reg file to merge it.

7 When prompted, click/tap on Run, Yes (UAC), Yes, and OK to approve the merge.

8 When finished, you can delete the downloaded .reg file if you like.


That's it,
Shawn Brink


 

Attachments

Last edited:
Nice one. :-)

I assume this "un-does" Take Ownership?
 

My Computers

System One System Two

  • OS
    Win 11 Home ♦♦♦26100.3775 ♦♦♦♦♦♦♦24H2 ♦♦♦non-Insider
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built by Ghot® [May 2020]
    CPU
    AMD Ryzen 7 3700X
    Motherboard
    Asus Pro WS X570-ACE (BIOS 5002)
    Memory
    G.Skill (F4-3200C14D-16GTZKW)
    Graphics Card(s)
    EVGA RTX 2070 (08G-P4-2171-KR)
    Sound Card
    Realtek ALC1220P / ALC S1220A
    Monitor(s) Displays
    Dell U3011 30"
    Screen Resolution
    2560 x 1600
    Hard Drives
    2x Samsung 860 EVO 500GB,
    WD 4TB Black FZBX - SATA III,
    WD 8TB Black FZBX - SATA III,
    DRW-24B1ST CD/DVD Burner
    PSU
    PC Power & Cooling 750W Quad EPS12V
    Case
    Cooler Master ATCS 840 Tower
    Cooling
    CM Hyper 212 EVO (push/pull)
    Keyboard
    Ducky DK9008 Shine II Blue LED
    Mouse
    Logitech Optical M-100
    Internet Speed
    300/300
    Browser
    Firefox (latest)
    Antivirus
    Bitdefender Internet Security
    Other Info
    Speakers: Klipsch Pro Media 2.1
  • Operating System
    Windows XP Pro 32bit w/SP3
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built by Ghot® (not in use)
    CPU
    AMD Athlon 64 X2 5000+ (OC'd @ 3.2Ghz)
    Motherboard
    ASUS M2N32-SLI Deluxe Wireless Edition
    Memory
    TWIN2X2048-6400C4DHX (2 x 1GB, DDR2 800)
    Graphics card(s)
    EVGA 256-P2-N758-TR GeForce 8600GT SSC
    Sound Card
    Onboard
    Monitor(s) Displays
    ViewSonic G90FB Black 19" Professional (CRT)
    Screen Resolution
    up to 2048 x 1536
    Hard Drives
    WD 36GB 10,000rpm Raptor SATA
    Seagate 80GB 7200rpm SATA
    Lite-On LTR-52246S CD/RW
    Lite-On LH-18A1P CD/DVD Burner
    PSU
    PC Power & Cooling Silencer 750 Quad EPS12V
    Case
    Generic Beige case, 80mm fans
    Cooling
    ZALMAN 9500A 92mm CPU Cooler
    Mouse
    Logitech Optical M-BT96a
    Keyboard
    Logitech Classic Keybooard 200
    Internet Speed
    300/300
    Browser
    Firefox 3.x ??
    Antivirus
    Symantec (Norton)
    Other Info
    Still assembled, still runs. Haven't turned it on for 15 years?
Nice one. :-)

I assume this "un-does" Take Ownership?

Hey mate, :alien:

It doesn't affect the "owner", but only resets the "permissions" bit.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gbps Download and 35 Mbps Upload
    Browser
    Google Chrome
    Antivirus
    Microsoft Defender and Malwarebytes Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    CyberPower CP1500PFCLCD
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Surface Laptop 7 Copilot+ PC
    CPU
    Snapdragon X Elite (12 core) 3.42 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Monitor(s) Displays
    15" HDR
    Screen Resolution
    2496 x 1664
    Hard Drives
    1 TB SSD
    Internet Speed
    Wi-Fi 7 and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Windows Defender
Hey mate, :alien:

It doesn't affect the "owner", but only resets the "permissions' bit.


Thanks... it'll still be useful for messed up permissions. Added to Leader Board. :-)
 

My Computers

System One System Two

  • OS
    Win 11 Home ♦♦♦26100.3775 ♦♦♦♦♦♦♦24H2 ♦♦♦non-Insider
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built by Ghot® [May 2020]
    CPU
    AMD Ryzen 7 3700X
    Motherboard
    Asus Pro WS X570-ACE (BIOS 5002)
    Memory
    G.Skill (F4-3200C14D-16GTZKW)
    Graphics Card(s)
    EVGA RTX 2070 (08G-P4-2171-KR)
    Sound Card
    Realtek ALC1220P / ALC S1220A
    Monitor(s) Displays
    Dell U3011 30"
    Screen Resolution
    2560 x 1600
    Hard Drives
    2x Samsung 860 EVO 500GB,
    WD 4TB Black FZBX - SATA III,
    WD 8TB Black FZBX - SATA III,
    DRW-24B1ST CD/DVD Burner
    PSU
    PC Power & Cooling 750W Quad EPS12V
    Case
    Cooler Master ATCS 840 Tower
    Cooling
    CM Hyper 212 EVO (push/pull)
    Keyboard
    Ducky DK9008 Shine II Blue LED
    Mouse
    Logitech Optical M-100
    Internet Speed
    300/300
    Browser
    Firefox (latest)
    Antivirus
    Bitdefender Internet Security
    Other Info
    Speakers: Klipsch Pro Media 2.1
  • Operating System
    Windows XP Pro 32bit w/SP3
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built by Ghot® (not in use)
    CPU
    AMD Athlon 64 X2 5000+ (OC'd @ 3.2Ghz)
    Motherboard
    ASUS M2N32-SLI Deluxe Wireless Edition
    Memory
    TWIN2X2048-6400C4DHX (2 x 1GB, DDR2 800)
    Graphics card(s)
    EVGA 256-P2-N758-TR GeForce 8600GT SSC
    Sound Card
    Onboard
    Monitor(s) Displays
    ViewSonic G90FB Black 19" Professional (CRT)
    Screen Resolution
    up to 2048 x 1536
    Hard Drives
    WD 36GB 10,000rpm Raptor SATA
    Seagate 80GB 7200rpm SATA
    Lite-On LTR-52246S CD/RW
    Lite-On LH-18A1P CD/DVD Burner
    PSU
    PC Power & Cooling Silencer 750 Quad EPS12V
    Case
    Generic Beige case, 80mm fans
    Cooling
    ZALMAN 9500A 92mm CPU Cooler
    Mouse
    Logitech Optical M-BT96a
    Keyboard
    Logitech Classic Keybooard 200
    Internet Speed
    300/300
    Browser
    Firefox 3.x ??
    Antivirus
    Symantec (Norton)
    Other Info
    Still assembled, still runs. Haven't turned it on for 15 years?
I could have used this so many times D: thanks
 

My Computer

System One

  • OS
    Windows 11 [22H2] [22621.2428]
    Computer type
    PC/Desktop
    Manufacturer/Model
    Culture-Virus v7.0
    CPU
    Intel Core i9-14900K 3.2 GHz 24-Core Processor
    Motherboard
    Asus ROG MAXIMUS Z790 APEX ENCORE ATX LGA1700 Motherboard
    Memory
    G.Skill Trident Z5 RGB 32 GB (2 x 16 GB) DDR5-7200 CL34 Memory
    Graphics Card(s)
    AMD Radeon RX 6950 XT
    Monitor(s) Displays
    AOC CQ27G2U/BK
    Screen Resolution
    2560x1440
    Hard Drives
    M.2 1: Samsung SSD 990 PRO 2TB
    M.2 2: Samsung SSD 970 EVO Plus 2TB
    PSU
    Corsair RM1000X SHIFT
    Case
    Phanteks NV9
    Cooling
    Custom Water / Direct-Die Cooling
    Keyboard
    Corsair K95 RGB PLATINUM XT Wired Gaming Keyboard
    Mouse
    ROCCAT LEADR Optical
    Internet Speed
    500mb Direct Fiber
    Browser
    Chrome

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gbps Download and 35 Mbps Upload
    Browser
    Google Chrome
    Antivirus
    Microsoft Defender and Malwarebytes Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    CyberPower CP1500PFCLCD
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Surface Laptop 7 Copilot+ PC
    CPU
    Snapdragon X Elite (12 core) 3.42 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Monitor(s) Displays
    15" HDR
    Screen Resolution
    2496 x 1664
    Hard Drives
    1 TB SSD
    Internet Speed
    Wi-Fi 7 and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Windows Defender
Hi
i know a little bit because my English is so poor.
"Reset Permissions" in context menu of files and folders. This one i choice
Add_Reset_Permissions_to_context_menu.reg
Add_Reset_Permissions_with_Pause_to_context_menu.reg
thanks
 

My Computer

System One

  • OS
    window 11 home
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell Inc.
    Motherboard
    Enhanced (101 - or 102-key)
Hey @Brink - How would I use it to reset permissions for the entire C: drive?
 

My Computer

System One

  • OS
    Windows XP/7/8/8.1/10/11, Linux, Android, FreeBSD Unix
    Computer type
    Laptop
    Manufacturer/Model
    Dell XPS 15 9570
    CPU
    Intel® Core™ i7-8750H 8th Gen 2.2Ghz up to 4.1Ghz
    Motherboard
    Dell XPS 15 9570
    Memory
    64GB using 2x32GB CL16 Mushkin redLine modules
    Graphics Card(s)
    Intel UHD 630 & NVIDIA GeForce GTX 1050 Ti with 4GB DDR5
    Sound Card
    Realtek ALC3266-CG
    Monitor(s) Displays
    15.6" 4K Touch UltraHD 3840x2160 made by Sharp
    Screen Resolution
    3840x2160
    Hard Drives
    Toshiba KXG60ZNV1T02 NVMe 1TB SSD
    PSU
    Dell XPS 15 9570
    Case
    Dell XPS 15 9570
    Cooling
    Stock
    Keyboard
    Stock
    Mouse
    SwitftPoint ProPoint
    Internet Speed
    Comcast/XFinity 1.44Gbps/42.5Mbps
    Browser
    Microsoft EDGE (Chromium based) & Google Chrome
    Antivirus
    Windows Defender that came with Windows
Hey @Brink - How would I use it to reset permissions for the entire C: drive?

You can't with this context menu. It would most likely break things.

Depending on how bad it is, a repair install may help.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gbps Download and 35 Mbps Upload
    Browser
    Google Chrome
    Antivirus
    Microsoft Defender and Malwarebytes Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    CyberPower CP1500PFCLCD
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Surface Laptop 7 Copilot+ PC
    CPU
    Snapdragon X Elite (12 core) 3.42 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Monitor(s) Displays
    15" HDR
    Screen Resolution
    2496 x 1664
    Hard Drives
    1 TB SSD
    Internet Speed
    Wi-Fi 7 and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Windows Defender
You can't with this context menu. It would most likely break things.

Depending on how bad it is, a repair install may help.
I already did a repair install though. DDU (Display Driver Uninstaller), the author claims the log shows that C:\ProgramData\Intel has a permissions issue except he doesn't know exactly where the permissions is having problems. You can see this thread which explains it better.
 

My Computer

System One

  • OS
    Windows XP/7/8/8.1/10/11, Linux, Android, FreeBSD Unix
    Computer type
    Laptop
    Manufacturer/Model
    Dell XPS 15 9570
    CPU
    Intel® Core™ i7-8750H 8th Gen 2.2Ghz up to 4.1Ghz
    Motherboard
    Dell XPS 15 9570
    Memory
    64GB using 2x32GB CL16 Mushkin redLine modules
    Graphics Card(s)
    Intel UHD 630 & NVIDIA GeForce GTX 1050 Ti with 4GB DDR5
    Sound Card
    Realtek ALC3266-CG
    Monitor(s) Displays
    15.6" 4K Touch UltraHD 3840x2160 made by Sharp
    Screen Resolution
    3840x2160
    Hard Drives
    Toshiba KXG60ZNV1T02 NVMe 1TB SSD
    PSU
    Dell XPS 15 9570
    Case
    Dell XPS 15 9570
    Cooling
    Stock
    Keyboard
    Stock
    Mouse
    SwitftPoint ProPoint
    Internet Speed
    Comcast/XFinity 1.44Gbps/42.5Mbps
    Browser
    Microsoft EDGE (Chromium based) & Google Chrome
    Antivirus
    Windows Defender that came with Windows
I already did a repair install though. DDU (Display Driver Uninstaller), the author claims the log shows that C:\ProgramData\Intel has a permissions issue except he doesn't know exactly where the permissions is having problems. You can see this thread which explains it better.

I suppose you could try manually navigating to the path allowing access if prompted (if not then take ownership if needed), and then try the uninstaller again.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gbps Download and 35 Mbps Upload
    Browser
    Google Chrome
    Antivirus
    Microsoft Defender and Malwarebytes Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    CyberPower CP1500PFCLCD
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Surface Laptop 7 Copilot+ PC
    CPU
    Snapdragon X Elite (12 core) 3.42 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Monitor(s) Displays
    15" HDR
    Screen Resolution
    2496 x 1664
    Hard Drives
    1 TB SSD
    Internet Speed
    Wi-Fi 7 and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Windows Defender
I suppose you could try manually navigating to the path allowing access if prompted (if not then take ownership if needed), and then try the uninstaller again.
I actually looked at the logs for DDU and it seems the access denies are in the registry as C:\ProgramData\Intel according to the logs seems to really be at C:\ProgramData\Intel\GFXInstaller which is just the Intel Graphics Driver so it seems one can just remove the Intel Graphics driver in Device Manager until it says Microsoft Basic Graphics and then delete C:\ProgramData\Intel\GFXInstaller as this is what the logs shows:

Code:
C:\ProgramData\Intel\GCC\gcc_svc_log_2025-03-30.txt</Message>
        </Event>
        <Event>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Deleted file:
C:\ProgramData\Intel\GCC\gcc_svc_log_2025-03-29.txt</Message>
        </Event>
        <Event>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Deleted file:
C:\ProgramData\Intel\GCC\gcc_svc_lace_log_2025-03-30.txt</Message>
        </Event>
        <Event>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Deleted file:
C:\ProgramData\Intel\GCC\gcc_svc_lace_log_2025-03-29.txt</Message>
        </Event>
        <Event>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Deleted directory:
C:\ProgramData\Intel\GCC</Message>
        </Event>
        <Event>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Deleted file:
C:\ProgramData\Intel\GFXInstaller\Installer\IntelGFX_20250329_113356_Install.log</Message>
        </Event>
        <Event>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Deleted file:
C:\ProgramData\Intel\GFXInstaller\Bootstrapper\IntelGFX_Bootstrapper_20250329_113349.log</Message>
        </Event>
        <Event>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Deleted directory:
C:\ProgramData\Intel\GFXInstaller\Installer</Message>
        </Event>
        <Event>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Deleted directory:
C:\ProgramData\Intel\GFXInstaller\Bootstrapper</Message>
        </Event>
        <Event>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Deleted directory:
C:\ProgramData\Intel\GFXInstaller</Message>
        </Event>
        <Warning>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Couldn't find directories, access denied!01</Message>
            <Values Separator=" : ">
                <KvP>
                    <Key>
</Key>
                    <Value>C:\ProgramData\Intel\</Value>
                </KvP>
            </Values>
        </Warning>
        <Warning>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Remaining folders found  : C:\ProgramData\Intel\ --&gt; C:\ProgramData\Intel\DAL</Message>
        </Warning>
        <Warning>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Remaining folders found  : C:\ProgramData\Intel\ --&gt; C:\ProgramData\Intel\DSA</Message>
        </Warning>
        <Warning>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Remaining folders found  : C:\ProgramData\Intel\ --&gt; C:\ProgramData\Intel\iCLS Client</Message>
        </Warning>
        <Warning>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Remaining folders found  : C:\ProgramData\Intel\ --&gt; C:\ProgramData\Intel\Installer</Message>
        </Warning>
        <Warning>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Remaining folders found  : C:\ProgramData\Intel\ --&gt; C:\ProgramData\Intel\Intel Extreme Tuning Utility</Message>
        </Warning>
        <Warning>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Remaining folders found  : C:\ProgramData\Intel\ --&gt; C:\ProgramData\Intel\IntelSGXPSW</Message>
        </Warning>
        <Warning>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Remaining folders found  : C:\ProgramData\Intel\ --&gt; C:\ProgramData\Intel\Logs</Message>
        </Warning>
        <Warning>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Remaining folders found  : C:\ProgramData\Intel\ --&gt; C:\ProgramData\Intel\Package Cache</Message>
        </Warning>
        <Warning>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Remaining folders found  : C:\ProgramData\Intel\ --&gt; C:\ProgramData\Intel\Uploader</Message>
        </Warning>

Wouldn't something like Tweaking.com Windows Repair tool fix both the registry and the files to the default permissions?
 

My Computer

System One

  • OS
    Windows XP/7/8/8.1/10/11, Linux, Android, FreeBSD Unix
    Computer type
    Laptop
    Manufacturer/Model
    Dell XPS 15 9570
    CPU
    Intel® Core™ i7-8750H 8th Gen 2.2Ghz up to 4.1Ghz
    Motherboard
    Dell XPS 15 9570
    Memory
    64GB using 2x32GB CL16 Mushkin redLine modules
    Graphics Card(s)
    Intel UHD 630 & NVIDIA GeForce GTX 1050 Ti with 4GB DDR5
    Sound Card
    Realtek ALC3266-CG
    Monitor(s) Displays
    15.6" 4K Touch UltraHD 3840x2160 made by Sharp
    Screen Resolution
    3840x2160
    Hard Drives
    Toshiba KXG60ZNV1T02 NVMe 1TB SSD
    PSU
    Dell XPS 15 9570
    Case
    Dell XPS 15 9570
    Cooling
    Stock
    Keyboard
    Stock
    Mouse
    SwitftPoint ProPoint
    Internet Speed
    Comcast/XFinity 1.44Gbps/42.5Mbps
    Browser
    Microsoft EDGE (Chromium based) & Google Chrome
    Antivirus
    Windows Defender that came with Windows
I actually looked at the logs for DDU and it seems the access denies are in the registry as C:\ProgramData\Intel according to the logs seems to really be at C:\ProgramData\Intel\GFXInstaller which is just the Intel Graphics Driver so it seems one can just remove the Intel Graphics driver in Device Manager until it says Microsoft Basic Graphics and then delete C:\ProgramData\Intel\GFXInstaller as this is what the logs shows:

Code:
C:\ProgramData\Intel\GCC\gcc_svc_log_2025-03-30.txt</Message>
        </Event>
        <Event>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Deleted file:
C:\ProgramData\Intel\GCC\gcc_svc_log_2025-03-29.txt</Message>
        </Event>
        <Event>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Deleted file:
C:\ProgramData\Intel\GCC\gcc_svc_lace_log_2025-03-30.txt</Message>
        </Event>
        <Event>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Deleted file:
C:\ProgramData\Intel\GCC\gcc_svc_lace_log_2025-03-29.txt</Message>
        </Event>
        <Event>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Deleted directory:
C:\ProgramData\Intel\GCC</Message>
        </Event>
        <Event>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Deleted file:
C:\ProgramData\Intel\GFXInstaller\Installer\IntelGFX_20250329_113356_Install.log</Message>
        </Event>
        <Event>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Deleted file:
C:\ProgramData\Intel\GFXInstaller\Bootstrapper\IntelGFX_Bootstrapper_20250329_113349.log</Message>
        </Event>
        <Event>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Deleted directory:
C:\ProgramData\Intel\GFXInstaller\Installer</Message>
        </Event>
        <Event>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Deleted directory:
C:\ProgramData\Intel\GFXInstaller\Bootstrapper</Message>
        </Event>
        <Event>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Deleted directory:
C:\ProgramData\Intel\GFXInstaller</Message>
        </Event>
        <Warning>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Couldn't find directories, access denied!01</Message>
            <Values Separator=" : ">
                <KvP>
                    <Key>
</Key>
                    <Value>C:\ProgramData\Intel\</Value>
                </KvP>
            </Values>
        </Warning>
        <Warning>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Remaining folders found  : C:\ProgramData\Intel\ --&gt; C:\ProgramData\Intel\DAL</Message>
        </Warning>
        <Warning>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Remaining folders found  : C:\ProgramData\Intel\ --&gt; C:\ProgramData\Intel\DSA</Message>
        </Warning>
        <Warning>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Remaining folders found  : C:\ProgramData\Intel\ --&gt; C:\ProgramData\Intel\iCLS Client</Message>
        </Warning>
        <Warning>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Remaining folders found  : C:\ProgramData\Intel\ --&gt; C:\ProgramData\Intel\Installer</Message>
        </Warning>
        <Warning>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Remaining folders found  : C:\ProgramData\Intel\ --&gt; C:\ProgramData\Intel\Intel Extreme Tuning Utility</Message>
        </Warning>
        <Warning>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Remaining folders found  : C:\ProgramData\Intel\ --&gt; C:\ProgramData\Intel\IntelSGXPSW</Message>
        </Warning>
        <Warning>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Remaining folders found  : C:\ProgramData\Intel\ --&gt; C:\ProgramData\Intel\Logs</Message>
        </Warning>
        <Warning>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Remaining folders found  : C:\ProgramData\Intel\ --&gt; C:\ProgramData\Intel\Package Cache</Message>
        </Warning>
        <Warning>
            <Time>3/30/2025 5:12:32 PM</Time>
            <Message>Remaining folders found  : C:\ProgramData\Intel\ --&gt; C:\ProgramData\Intel\Uploader</Message>
        </Warning>

Wouldn't something like Tweaking.com Windows Repair tool fix both the registry and the files to the default permissions?

Reinstalling the driver may restore them.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gbps Download and 35 Mbps Upload
    Browser
    Google Chrome
    Antivirus
    Microsoft Defender and Malwarebytes Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    CyberPower CP1500PFCLCD
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Surface Laptop 7 Copilot+ PC
    CPU
    Snapdragon X Elite (12 core) 3.42 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Monitor(s) Displays
    15" HDR
    Screen Resolution
    2496 x 1664
    Hard Drives
    1 TB SSD
    Internet Speed
    Wi-Fi 7 and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Windows Defender
The dirty secret behind "Reset permissions" is it's often not very helpful.

There's a presumption that someone or some process has incorrectly altered one or more child folders from a given directory path, and resetting the inheritance from that directory level down to all child folders will restore the previous "correct" state.

More often that not, many subfolders will explicitly override their parent's permissions and you won't necessarily know where. There is no roadmap.

When Windows installs components, each component has a manifest file that has every folder it owns, and their security descriptors explicitly listed. The problem here is you're tackling a 3rd-party driver/tools/app folder which is commonly installed by a MSI package. Sometimes you're lucky and the vendor has a "repair" option on the MSI which just forces a reinstall.

If you don't, you only have two options:
1. Uninstall everything and delete (or rename) the folders. Re-install Intel's package again.

2. Find a friend who has the identical package installed. Run icacls to export their folder permissions, and restore those permissions on your PC.

Working system:
Code:
icacls "C:\ProgramData\Intel" /save "C:\path\ACLs.txt" /t /c

Broken system:
Code:
 icacls "C:\ProgramData\Intel" /restore "C:\path\ACLs.txt"
 

My Computer

System One

  • OS
    Windows 7
@Brink and @garlin - Thanks for the pointers. In this case, since the logs themselves point to C:\ProgramData\Intel\GFXInstaller with the access denied which is basically the Intel Graphics drivers as the other folders in and C:\ProgramData\Intel all show Remaining Folders found which from what I can tell means it can access them without issues. If I right click on the Device Manager's Intel GPU and uninstall and delete files and repeat until it says Microsoft Basic Graphics Driver, then technically at that point the Intel Drivers are no longer needed since it's no longer in the Driver Store so if I deleted the C:\ProgramData\Intel\GFXInstaller folder at this point to get rid of it, then running the Intel Graphics Driver installer will recreate a new C:\ProgramData\Intel\GFXInstaller, wouldn't it also have the create permissions at this point from the installer?
 

My Computer

System One

  • OS
    Windows XP/7/8/8.1/10/11, Linux, Android, FreeBSD Unix
    Computer type
    Laptop
    Manufacturer/Model
    Dell XPS 15 9570
    CPU
    Intel® Core™ i7-8750H 8th Gen 2.2Ghz up to 4.1Ghz
    Motherboard
    Dell XPS 15 9570
    Memory
    64GB using 2x32GB CL16 Mushkin redLine modules
    Graphics Card(s)
    Intel UHD 630 & NVIDIA GeForce GTX 1050 Ti with 4GB DDR5
    Sound Card
    Realtek ALC3266-CG
    Monitor(s) Displays
    15.6" 4K Touch UltraHD 3840x2160 made by Sharp
    Screen Resolution
    3840x2160
    Hard Drives
    Toshiba KXG60ZNV1T02 NVMe 1TB SSD
    PSU
    Dell XPS 15 9570
    Case
    Dell XPS 15 9570
    Cooling
    Stock
    Keyboard
    Stock
    Mouse
    SwitftPoint ProPoint
    Internet Speed
    Comcast/XFinity 1.44Gbps/42.5Mbps
    Browser
    Microsoft EDGE (Chromium based) & Google Chrome
    Antivirus
    Windows Defender that came with Windows
Turns out reading the XML logs using DDU was better than using Notepad++ as the access denied was more of a C:\ProgramData\Intel issue so what I did was:
1. Copy the Intel folder from C:\ProgramData\ to Desktop to see where it had trouble, first it did a access denied on Intel but Try again got passed it but the second one was at IntelSGXPSW that try again could not get passed.
2. At this point, I cleared the Intel folder on the desktop and went directly into C:\ProgramData\Intel and copied each item to the Intel folder on the desktop.
1743562014316.webp

I copied everything except for IntelSGXPSW which I did last and all the other folders copied successfully without complaints. The IntelSGXPSW had the same issue where it was access denied and try again did not work.
Properties on the folder shows:
1743562266888.webp

1743562385121.webp


Clicking on "Continue" only resulted in this:
1743562436807.webp


I had to use the Privilege File Manager from Right-Click tools New App: Right-Click Tools in TrustedInstaller mode where it showed:
1743562929465.webp

1743563038305.webp


where it showed:
1743563228204.webp

1743563332300.webp


I could not even use my PrintScreen key in Snagit to do the screenshots and had to open Snagit and use the mouse as the File Manager's TrustedInstaller access was higher than the Administrator access given to the Print Screen key by a SnagitPriv.exe process.

And these were the files in the folder:
1743563580616.webp


C:\ProgramData\Intel\IntelSGXPSW belongs to Intel® Software Guard Extensions (SGX) Platform Software Driver v2.25.100.3 so first I renamed it to IntelSGXPSW.old and then deleted the two .inf's for SGX, one was base and the other was the PSW with DriverStore Explorer and then used pnputil and installed the SGX base and PSW.inf's using Intel's documentation instructions as only older versions used a .exe installer while new versions were all INF based, the PSW.inf created the IntelSGXPSW folder and it had the exact same files and permissions as shown above and as Intel SGX is hardware on the Intel CPU, the permissions were done that way by design as from my research, it seems SGX is a security feature. So at the end, I deleted the IntelSGXPSW folder and renamed the IntelSGXPSW.old folder back from IntelSGXPSW as I wanted it to keep the April 9, 2019 folder creation date which was the date Dell built the computer and deleted the 4 files and basically repeated the uninstall of the two .inf files using DriverStore Explorer and installed the SGX base and PSW.inf's using pnputil which added the 4 files back to the IntelSGXPSW folder.

DDU (Display Driver Uninstaller) is for removing AMD/NVIDIA/Intel video drivers and Realtek Audio Drivers so if the folder is not related to any of those, it shouldn't need access to it as it's not even related.
 

My Computer

System One

  • OS
    Windows XP/7/8/8.1/10/11, Linux, Android, FreeBSD Unix
    Computer type
    Laptop
    Manufacturer/Model
    Dell XPS 15 9570
    CPU
    Intel® Core™ i7-8750H 8th Gen 2.2Ghz up to 4.1Ghz
    Motherboard
    Dell XPS 15 9570
    Memory
    64GB using 2x32GB CL16 Mushkin redLine modules
    Graphics Card(s)
    Intel UHD 630 & NVIDIA GeForce GTX 1050 Ti with 4GB DDR5
    Sound Card
    Realtek ALC3266-CG
    Monitor(s) Displays
    15.6" 4K Touch UltraHD 3840x2160 made by Sharp
    Screen Resolution
    3840x2160
    Hard Drives
    Toshiba KXG60ZNV1T02 NVMe 1TB SSD
    PSU
    Dell XPS 15 9570
    Case
    Dell XPS 15 9570
    Cooling
    Stock
    Keyboard
    Stock
    Mouse
    SwitftPoint ProPoint
    Internet Speed
    Comcast/XFinity 1.44Gbps/42.5Mbps
    Browser
    Microsoft EDGE (Chromium based) & Google Chrome
    Antivirus
    Windows Defender that came with Windows

Latest Support Threads

Back
Top Bottom