cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
nicoeschpiko
Level 3

How to create a shared directory w/IS08

How can I create a shared directory w/Installshield 2008 in Installscript?
Labels (1)
0 Kudos
(1) Reply
rohricht
Level 3

Hi! A way to do this is use a bat. You can create it on script, with the follow content:

net share " + sNomeCompartilhamento + "=" + sDiretorio + " /UNLIMITED /GRANT:" + sUsuarioEscrita + ",CHANGE

where the first var is the share name, the second is the directory to share and the last is the user name on machine.
0 Kudos