Search found 5 matches
- 12 Apr 2012 07:26
- Forum: DOS Batch Forum
- Topic: cacls
- Replies: 1
- Views: 2290
cacls
hello i have 100 users with each a folder on a share like this user 1: \\server01\profiles\user 1 ... ... user 100 \\server01\profiles\user 100 each user is owner of it's own folder now i want a logon .bat script that gives the administrators group full controll of the folder i have made something l...
- 11 Apr 2012 12:58
- Forum: DOS Batch Forum
- Topic: ownership + permission script
- Replies: 5
- Views: 4970
Re: ownership + permission script
typo i meant owner instead of user
- 11 Apr 2012 12:56
- Forum: DOS Batch Forum
- Topic: ownership + permission script
- Replies: 5
- Views: 4970
Re: ownership + permission script
hello, i managed to try out some code, the only problem i have is saving the OWNER of a file, and when all changes are made restoring the OWNER @echo off **** i need to save the current user of the folder here****** takeown /F c:\profiles\* /A icacls c:\profiles\* /grant administrators:(F) *****i ne...
- 11 Apr 2012 12:07
- Forum: DOS Batch Forum
- Topic: ownership + permission script
- Replies: 5
- Views: 4970
Re: ownership + permission script
hello the folder c:\profiles is a shared network folder, however the problem is that i'm performing a migration of users/computers objects with the active directory migration tool. In order to migrate the roaming profiles, the administrator group needs to have full control. i don't understand much a...
- 11 Apr 2012 06:31
- Forum: DOS Batch Forum
- Topic: ownership + permission script
- Replies: 5
- Views: 4970
ownership + permission script
hello, i got a folder called "profiles" and inside this folder are 100+ profile folders of users, each user has it's own folder. when i want to access a profile folder of a user, i first have to take ownership off the folder and then i have to give the administrators group full permission....