InstallShield2015制作安装包----------安装后实现自动运行

时间:2023-03-08 17:40:46

安装向导完成后,自动运行。

实现的手段是:InstallScript脚本OnEnd()函数里面,调用可执行程序。

备注:INSTALLDIR预定义变量存放着程序的安装目录。

 //安装后运行dispatcher
strPath=INSTALLDIR+"dispatcher";
strName="Frs.exe";
FindFile(strPath,strName,strResult);
if(strResult!="") then
strPath=strPath+"\\"+strName;
LaunchAppAndWait(strPath,"",NOWAIT);
endif;