Archive: create a shared network-folder


create a shared network-folder
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


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