Noah
 
Use subinacl to rest the ownership. I would do something like this.
 
dir /b /s path_to_folder_with_list_of_usernames > something.txt
for /f %i in (something.txt) do subinacl /file %i /setowner=domain\%i
for /f %i in (something.txt) do subinacl /subdirectories %i\*.* /setowner=domain\%i
 
This assumes all the redirected folders are under one folder. All users are from the same domain etc.. I remember having to do this twice to reset ownership to the parent folder and also for child objects.
 
M@

Reply via email to