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

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -