Here's a batch file to create a list of users folders and share them

net use n: /d /yes
net use n: \\servername\f$
n:
cd users
for /f %%x in (n:\users.txt) do md %%x >>n:\dir.log
for /f %%x in (n:\users.txt) do cacls %%x /e /g domain\%%x:c >>n:\perms.log
for /f %%x in (n:\users.txt) do rmtshare \\servername\%%x$=f:\users\%%x /grant domain\%%x:change /grant system:"full control" /grant administrators:"full control" >>n:\share.log
c:
net use n: /d

syntax for user.txt

user1
user2
user3
etc

the batch file will just loop until in reaches the end of the text file

P.S if you have the folder above assigned with the correct permissions
i.e administrator full control, the batch file adds the user's permission