Somehow i accidentally set all the files in a subfolder to no owner and i cant seem to change all the permission. I can change one by hand by changing the owner then setting permissions but how can i change owner of all the files in this directory at once?
|
feedback
|
|
Use takeown from the command prompt to take ownership a folder and all subfolders & files recursively:
| |||
|
feedback
|
|
You can use CACLS from the command prompt: cacls "C:\path\to\folder" /E /T /C /G "Administrator":F The | |||
|
feedback
|
|
Note that cacls is deprecated (since Windows Vista?) and it advises you to use icacls. This command will recursively reset the permissions on a folder
Edit: Corrected spelling of command | ||||
|
feedback
|