PDA

View Full Version : create a shared network-folder


Davion
25th May 2004, 08:31
Another stupid question:

Is there a way to create a shared network-folder with NSIS?

I don't know if this is the right word for this, but I think you understand what I mean.

I just wanted to make the $INSTDIR of my Setup accessable for all users in the Network, so they can Install a client right from the server

hope anyone can help

thx Dave

billclinton1982
27th May 2004, 16:20
I don't think NSIS has any function to do this, but you can share a folder using 'net share' DOS command, like this :


nsExec::Exec 'net share mynewsharedfolder=c:\something'


It should work :D