installation - Can I create installer that copies files from a UNC path on the network? -


is possible create inno setup script copy files unc path on network rather statically adding them setup file?

if so, can still done if need authenticate path first? there mechanism provide authentication info in inno setup script?

essentially, wanting setup copy files various sources on intranet unc path put setup destination directory.

yes, specify unc path in source parameter of [files] section entry , use external flag.

[files] source: \\unc\path\file.txt; destdir: {app}; flags: external 

to authenticate, have call wnetuseconnection or similar winapi.

see how execute "net use" command inno setup installer on windows 7?


Comments

Popular posts from this blog

php - Cannot override Laravel Spark authentication with own implementation -

What is happening when Matlab is starting a "parallel pool"? -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -