gpt4 book ai didi

nsis - 安装后运行应用程序(静默安装程序)

转载 作者:行者123 更新时间:2023-11-30 23:50:31 26 4
gpt4 key购买 nike

我想在安装后立即运行我的应用程序,我理解执行此操作的代码如下:

!define MUI_FINISHPAGE_RUN
!define MUI_FINISHPAGE_RUN_FUNCTION "LaunchLink"
!insertmacro MUI_PAGE_FINISH

Section
CreateShortcut "$DESKTOP\HelloWorldShortcut.lnk" "$INSTDIR\Hello World.exe" "dev03 3"
SectionEnd

Function LaunchLink
ExecShell "" "$DESKTOP\HelloWorldShortcut.lnk"
FunctionEnd

问题是我的安装程序是静默安装程序,但上面的代码为其添加了一个页面。

有没有办法使用静默安装程序在安装后立即运行应用程序?

最佳答案

静默安装程序可以在上一节的最后一步运行应用程序。静默安装程序启动应用程序是否是一个好主意是您应该考虑的事情,我个人会说不...

Section
SetOutPath $InstDir
File "MyApp.exe"
...

IfSilent "" +2 ; If the installer is always silent then you don't need this check
ExecShell "" "$InstDir\MyApp.exe"
SectionEnd

关于nsis - 安装后运行应用程序(静默安装程序),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31189944/

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