Hello everybody,
I have been searching for a way to create shares and assign users
permissions (specifically read and write).. I finally found two ways to
do that and thought about letting you know, should you need to do the
same.
== First way ==
Just use "net share". You will have to open a command prompt and type
net share ShareName=C:\Folder /GRANT:GrantUser,READ /CACHE:None
where:
# ShareName is the name you want to assign to the share;
# Folder is the path to the folder you want to share;
# GrantUser is the name of the user you want to grant access.
You may grant READ and FULL access (read and write) to any user.
== Second way ==
You may want to use a VB script as described in
http://cwashington.netreach.net/depo...tType=vbscript
Ciao, take care and have fun.
Mario