inno setup静默安装
Posted yuzhould
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了inno setup静默安装相关的知识,希望对你有一定的参考价值。
[Code]
//关键代码静默安装
procedure InitializeWizard();
begin
//不显示边框,这样就能达到不会闪两下了
WizardForm.BorderStyle:=bsNone;
end;
procedure CurPageChanged(CurPageID: Integer);
begin
//因为安装过程界面隐藏不了,所以设置窗口宽高为0
WizardForm.ClientWidth := ScaleX(0)
WizardForm.ClientHeight := ScaleY(0)
if CurPageID = wpWelcome then
WizardForm.NextButton.OnClick(WizardForm);
if CurPageID >= wpInstalling then
WizardForm.Visible := False
else
WizardForm.Visible := True;
// WizardForm.NextButton.OnClick(WizardForm);
end;
function ShouldSkipPage(PageID: Integer): Boolean;
begin
result := true;
end;
以上是关于inno setup静默安装的主要内容,如果未能解决你的问题,请参考以下文章