Fix You require permission from trustedinstaller windows 10

On Windows Operating system while trying to delete files or contents inside a folder, you may get a message You require permission from TrustedInstaller. Although you may say that why would i need permission to delete a file inside a particular folder when i have looged in as Administrator. The reason is that Windows has a Built in System Account named Trustedinstaller to prevent certain important files from being deleted or modified.

So, if you want to modify or delete certain kind of files of these type, you need to take ownership of these folder/files. Otherwise you will always be greeted with the Prompt. Here is how to Take ownership of the files and Get rid of this prompt. Note, that for important files , you must revert ownership back to trustedinstaller after doing the change.

 

Fix 1 – Using Command prompt

1. Search CMD in windows 10 search box.

2. Right click on the cmd icon and click on run as administrator.

3. Now, run the commands given below one by one.

takeown /F "path_of_folder_you_want_to_delete" /r /d y

 

icacls "path_of_folder_you_want_to_delete" /grant Administrators:F /t

 



rd "path_of_folder_you_want_to_delete" /S /Q

 

Just replace the full path by path of the folder.

To copy path of the folder just open the folder.

Open The Folder You Want To Delete

 

Then copy the path of the folder from the address bar.

 

Copy Path Folderr

 

So, in My case the commands i will execute are : –

takeown /F "C:\Users\SAURAV\Desktop\office folder\unnecessary files" /r /d y
icacls "C:\Users\SAURAV\Desktop\office folder\unnecessary files" /grant Administrators:F /t
rd "C:\Users\SAURAV\Desktop\office folder\unnecessary files" /S /Q

 

Cmd Delete Folder Can Not Delete

Fix 2 – Change Ownership

1. Right Click on the Folder and Choose Properties.

 

Properties

2. Now, Click on Security Tab.

3. Click on Advanced.

 

Security Advanced Min (1)

4. Click on Change in the Owner section.

 

Change Owner 1 Min

 

5. Click on Advanced

 

Advanced Min

6. Click on Find Now.

7. Select your Username from the List. Click OK.

 

Find Now Select User Min

 

 

8. Check “Replace owner on sub containers and objects ” and  “Replace all child object permission entries with inheritable permission entries from this object” .

 

Replace Owner On Subcontainers Min

 

9. Now, Click on Apply and Ok.

10. Again Click on Security and then Click on Advanced as explained in step 3 above.

11. Click on Add.

 

Add Permission

 

12. Click on Select a Principal.

 

Select A Prinicipal Min

 

13. Click on Advanced



 

Advanced Min

14. Click on Find Now.

15. Select your Username from the List. Click OK.

 

Find Now Select User Min

 

16. Check all the Permissions.

 

Check All Permissions Min

17.Check “Replace owner on sub containers and objects ” and  “Replace all child object permission entries with inheritable permission entries from this object” again.

 

Replace Owner On Subcontainers Min

Now, Go ahead and delete the files you wanted to delete again. You will face no Problem.