inno setup 静默安装与静默卸载

查看 38|回复 4
作者:fd999   
哪位大神有 inno setup 静默安装与静默卸载的脚本啊,就是制作的exe安装或卸载时不弹出窗口。
感谢大神帮助,好人一生平安。

大神, 哪位

fd999
OP
  

静默安装网上找到了
[code]
procedure InitializeWizard();
begin
WizardForm.BorderStyle:=bsNone;
end;
function ShouldSkipPage(PageID: Integer): Boolean;
begin
    Result := True
end;
procedure CurPageChanged(CurPageID: Integer);
var
indexpageid3:Integer;
begin
    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;   
end;
fd999
OP
  


fd999 发表于 2023-4-30 22:07
静默安装网上找到了
[code]
procedure InitializeWizard();

还有个静默卸载我不会,求大神帮助。
jyjjf   

可以自己申请撤销了
fd999
OP
  


jyjjf 发表于 2023-4-30 22:14
可以自己申请撤销了

还有个静默卸载我不会
您需要登录后才可以回帖 登录 | 立即注册

返回顶部