inno setup 如何定制安装最后一步

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了inno setup 如何定制安装最后一步相关的知识,希望对你有一定的参考价值。

参考技术A 在CurStepChange中截获ss_done

procedure CurStepChanged(CurStep: TSetupStep);
var
ErrorCode: Integer;
begin
if CurStep = ssPostInstall then
//做你想要的操作
end;
Copy自inno之帮助:
procedure CurStepChanged(CurStep: TSetupStep);
You can use this event function to perform your own pre-install and post-install tasks.

Called with CurStep=ssInstall just before the actual installation starts, with CurStep=ssPostInstall just after the actual installation finishes, and with CurStep=ssDone just before Setup terminates after a successful install.本回答被提问者采纳

以上是关于inno setup 如何定制安装最后一步的主要内容,如果未能解决你的问题,请参考以下文章

如何使用Inno Setup Compiler制作安装软件包

Inno Setup 如何使用皮肤插件更换软件安装包界面和外框包装?望详细解答!

Inno Setup 如何使用皮肤插件更换软件安装包界面和外框包装?望详细解答!

Inno Setup CreateProcess 失败:代码 740(Inno Setup打包的程序提升为管理员权限)

Inno Setup 编译器”如何打包 javaWeb 应用程序,自动设置环境变量

如何使用Inno Setup Compiler制作安装软件包