gpt4 book ai didi

installation - 在 inno setup 中运行 InstallUtil {app}/file.exe

转载 作者:行者123 更新时间:2023-12-04 19:32:00 24 4
gpt4 key购买 nike

我想将服务文件复制到 {app} 目录,然后将其用作 InstallUtil.exe 中的参数。

这是我的代码的一部分:

[Files]
Source: WCFService.exe; DestDir: {app}
Source: WCFService.exe.config; DestDir: {app}

[Run]
Filename: {dotnet40}\InstallUtil.exe; Parameters: {app}\WCFService.exe

此代码不起作用(但文件已正确复制到 {app} 目录中)。但是,如果我使用这样的东西:
[Files]
Source: WCFService.exe; DestDir: {src}
Source: WCFService.exe.config; DestDir: {src}

[Run]
Filename: {dotnet40}\InstallUtil.exe; Parameters: WCFService.exe

它工作正常。有谁知道发生了什么?
我必须使用 inno setup。

最佳答案

在这种情况下,您可以尝试设置 WorkingDir {app} 的参数在 [Run]部分。
像这样:

[Run]
Filename: "{dotnet40}\InstallUtil.exe"; WorkingDir: "{app}"; Parameters: "WCFService.exe"

关于installation - 在 inno setup 中运行 InstallUtil {app}/file.exe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18181855/

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