Forum Discussion
How to Grant Administrator Permission to Delete a Folder on Windows 11
Hi Dave, thanks for your help on this.
Here’s a clear and practical way to handle this issue on Windows 11 when a folder won’t delete due to permission restrictions:
If you’re trying to delete a folder and getting an “administrator permission required” message, even while using an admin account, it usually means the folder is owned by another system account (like TrustedInstaller) or has restricted permissions.
Steps to fix it:
- Take Ownership of the Folder
- Right-click the folder → Properties
- Go to the Security tab → click Advanced
- Next to Owner, click Change
- Type your username → click Check Names → OK
- Tick “Replace owner on subcontainers and objects”
- Click Apply and OK
- Grant Full Control Permissions
- Go back to Properties → Security → Edit
- Select your user account
- Check Full Control
- Click Apply → OK
- Try Deleting Again
- After ownership and permissions are updated, delete the folder normally
Alternative (Command Prompt Method)
If the GUI method doesn’t work:
- Open Command Prompt as Administrator
- Run these commands:
takeown /f "C:\Path\To\Folder" /r /d y icacls "C:\Path\To\Folder" /grant administrators:F /t rmdir /s /q "C:\Path\To\Folder"
extra things to check:
- Make sure the folder isn’t currently in use by another program
- Restart your PC and try again
- Boot into Safe Mode if the issue persists
I ran into a similar situation recently while organizing some files linked to ahttps://sassastatuscheck.s3.eu-north-1.amazonaws.com/sassa+status.html, and the folder permissions were locked down in a similar way — taking ownership resolved it right away.
Hope this helps! Let me know if you’re still stuck 👍