gpt4 book ai didi

windows-installer - NSIS - 复制安装程序本身

转载 作者:行者123 更新时间:2023-12-04 06:10:36 25 4
gpt4 key购买 nike

我想将安装程序复制到安装位置。

我正在运行文件:Installer.exe
我希望它可以将自己复制到 $INSTDIR

我试过:

CopyFiles "Installer.exe" "$INSTDIR\Installer.exe"

我在安装日志中看到“复制失败”。

尝试开源,读源码,打开dest,写dest:
  FileOpen $4 "Installer.exe" r
FileRead $4 $1 80000
FileClose $4

FileOpen $4 "$INSTDIR\Installer.exe" w
FileWrite $4 $1
FileClose $4

它创建 $INSTDIR\Installer.exe
但在安装进度后,它有 0 个字节。

你有其他方法吗?

谢谢!

最佳答案

您应该使用完整路径, $ExePath 是安装程序本身的完整路径...

CopyFiles "$ExePath" "$InstDir\"

关于windows-installer - NSIS - 复制安装程序本身,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7830069/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com