Installshield集成第三方安装包并使用脚本安装

        由于在安装过程中要不断的调用第三方程序安装驱动,所有要把第三方程序集成到安装包里。

将需要安装的程序添加到【Behavior and logic】 -> 【Support Files】 -> 【Language Independent】中

使用SUPPORTDIR获取路径,如:

LaunchAppAndWait(SUPPORTDIR^"setup.exe","", LAAW_OPTION_WAIT)  

这样就可以启动该程序了

function OnBegin()
begin
	// TO DO: you may change default non-UI setting, for example
	//
	// You may also perform your custom initialization steps, check requirements, etc.	
	if(!MAINTENANCE)then
		if(SdLicense2("License ", "", "", SUPPORTDIR ^ "33.txt", FALSE)=NEXT)then
			if(LaunchAppAndWait(SUPPORTDIR^"setup.exe","", LAAW_OPTION_WAIT) < 0)then
			MessageBox("fail",INFORMATION);
			endif;
		endif;
	endif;

	//MessageBox("OnBegin",INFORMATION);
end;



你可能感兴趣的:(Installshield集成第三方安装包并使用脚本安装)