我可以创建从网络上的 UNC 路径复制文件的安装程序吗?
Can I create installer that copies files from a UNC path on the network?
是否可以创建 Inno Setup 脚本来从网络上的 UNC 路径复制文件,而不是将它们静态添加到安装文件中?
如果是这样,如果我需要先验证路径是否仍然可以完成? Inno Setup 脚本中是否有提供身份验证信息的机制?
基本上,我希望安装程序仅通过 UNC 路径从内部网上的各种来源复制文件,以放入安装程序目标目录。
是的,在[Files]
section entry and use the external
flag的Source
参数中指定UNC路径。
[Files]
Source: \UNC\path\file.txt; DestDir: {app}; Flags: external
要进行身份验证,您必须调用 WNetUseConnection
或类似的 WinAPI。
见How to execute "net use" command from Inno Setup installer on Windows 7?
是否可以创建 Inno Setup 脚本来从网络上的 UNC 路径复制文件,而不是将它们静态添加到安装文件中?
如果是这样,如果我需要先验证路径是否仍然可以完成? Inno Setup 脚本中是否有提供身份验证信息的机制?
基本上,我希望安装程序仅通过 UNC 路径从内部网上的各种来源复制文件,以放入安装程序目标目录。
是的,在[Files]
section entry and use the external
flag的Source
参数中指定UNC路径。
[Files]
Source: \UNC\path\file.txt; DestDir: {app}; Flags: external
要进行身份验证,您必须调用 WNetUseConnection
或类似的 WinAPI。
见How to execute "net use" command from Inno Setup installer on Windows 7?