Link to home
Start Free TrialLog in
Avatar of jamespcurran
jamespcurran

asked on

change sharing and permissions for a large number folders using cscript

I have a small issue with changing the permissions on the user folders during a server upgrade.
We are replacing several older 2003 based servers with new and larger systems. During the upgrade process we use a program
called double-take to replicate the data from one system to another overnight. I am left with only several small issues. The user directory
that is brought over needs all its user folders shared and the permissions for "everyone" changed to full control. Since there are over 300 users this is a lot of clicking to perform manually. Is there a utility to perform this change or a cscript to automate the process.

Someone mentioned a command under adsi that worked.

Above assistance is worth 500 points.
Avatar of KaliKoder
KaliKoder
Flag of Canada image

Hello Jamespcurran-

I believe the tool you need is a free one and GUI based from Microsoft, its called Fileserver Migration Toolkit.

You can download it for free from MS. A step by step implimentation of what you are wanting to do is described here:

http://thelazyadmin.com/index.php?/archives/203-Using-the-File-Server-Migration-Toolkit.html

Thanks and Good Luck!
Avatar of jamespcurran
jamespcurran

ASKER

The profiles and user directories are copied on a continuous basis by the double-take program. This allows our 24 hr operation to continue and confirms that all the data is up to date during and after the copy. We stop the replication and perform the changeover at the last minute to minimize downtime. The amount of data would be overwelming to copy during 1 night.  we have a 3 hr maximum time to make the changeover. Once we break the replication, the directories, for example the users direcroy, is currently manually changed to share status and the user everyone is givin full control. The Fileserver Migration tool would work but would increase the latenight folder copy. We really need a quick script or tool to 1. change each folder to shared and 2. give the user everyone full control.

Ah ok!

You can use XCACLS utility to script this. Its a free one from Microsoft available at:
http://support.microsoft.com/?id=825751

Some examples and usage explained at:
http://www.ss64.com/nt/xcalcs.html

I would try and find an example of what exactly would fit your scenario, regarding sharing folders. But in the meanwhile XCACLS would be a good place to start..
Kalikoder

Thanks I will try the utility. It looks like this will change the security setting of Everyone in the user directories but not turn on the share. Will it also work on Multiple folders???
Tried the XCACLS and found Three Issues.

1. Does not turn on Sharing Feature
2. Will give Full control to multiple folders to Everyone but under security not under Shared permissions
3. Give a sort error.

Don't think this will work. Also tried an older program cacls with same results.

I thinks we need to turn the share on for wach folder and then go thru on another pass to change permissions on the shared folder.

Yes, I believe it would be a two step process. First you would create the shares, next assign the NTFS permissions. To create the shares you can use the "net share" command (use net share /? to get help). However I still have not figured how to change share permissions using command line:

http://www.jsifaq.com/SF/Tips/Tip.aspx?id=0063

Still researching

Actually this article does suggest using a template for assigning share permissions, you can use a combination of RMTSHARE.exe and PERMCOPY.exe. RMTSHARE.exe might do what you want.

http://www.jsifaq.com/SF/Tips/Tip.aspx?id=6353

http://www.windowsitpro.com/Article/ArticleID/14459/14459.html

You can make a batch file to set these up, I have not yet figured how you can "loop" the batch file and pass the name of the folders to it automatically. But basically I have a faint idea. Here is the algoritham

- Do a dir command and output the list of directories to a .txt file Dir > file.txt
- Massage the text file so it only had one directory name per line, nothing else
- Loop a batch file so that it does a RMTShare.exe command and passes the name of the folder to it

Alternatively, you can put one rmtshare.exe command on each line with the name and path of the folder you want to share. Since your folder structure hopefully wont change to much on day today basis, you can keep using the same paths and foldernames. Its only a manual process for the first time, and next times it would be automated. Same concept applies for XCACLS.

Thanks and Good Luck!

 
C:\users>rmtshare \\cmsweb5\user1=C:\users\user1 /grant everyone:f

This worked for a command line change of the share and also the correct user everyone.

This may be possible. I have tried to use * for the user1 folder name on my test bed and the xcacls or rmtshare do not recognize wild cards in any way.

Can you give me some assistance on the batch file and looping function. My brain is very slow today.

this is very close Thanks for the research and hard work.

Jim
ASKER CERTIFIED SOLUTION
Avatar of KaliKoder
KaliKoder
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial