zoukankan      html  css  js  c++  java
  • [inno setup] 去除所有提示 == 静默安装

    [Setup]
    AppName=ReYo DRP
    AppVerName=ReYo DRP
    AppPublisher=ReYo Inc
    AppVersion=2009.1201.0.1518
    DefaultDirName={pf}\ReYoWebPrint\
    DefaultGroupName=ReYoWebPrint
    OutputDir=E:\锐洋WEB打印控件\
    OutputBaseFilename=setup
    ;压缩相关
    Compression=lzma/max
    SolidCompression=true
    PrivilegesRequired=admin
    ;-------------------------------
    CreateUninstallRegKey=true
    Uninstallable=true
    ;--------------------------------------
    WizardImageFile=InterDrpWizard.bmp
    WizardSmallImageFile=InterDrpWizardsmall.bmp
    VersionInfoVersion=2009.1201.0.1518
    VersionInfoCompany=ReYo Software Setup
    VersionInfoDescription=锐洋软件安装程序
    InternalCompressLevel=ultra
    EnableDirDoesntExistWarning=false
    AllowRootDirectory=true
    ShowLanguageDialog=yes
    VersionInfoCopyright=版权所有 (C) 锐洋软件。保留所有权利。
    AppPublisherURL=http://www.interdrp.com
    AllowNoIcons=yes
    UserInfoPage=True
    SetupLogging=True
    LanguageDetectionMethod=locale
    WizardImageStretch=true

    [Languages]
    Name: "chinesesimp"; MessagesFile: "compiler:Default.isl"

    [Files]
    Source: ReYoPrint.dll; DestDir: {sys}; Flags: restartreplace sharedfile regserver

    [UninstallDelete]
    Type: filesandordirs; Name: {app};

    [Code]
    //关键代码
    procedure CurPageChanged(CurPageID: Integer);
    begin
    if CurPageID = wpWelcome then
    WizardForm.NextButton.OnClick(WizardForm);
    end;

    function ShouldSkipPage(PageID: Integer): Boolean;
    begin
    result := true;
    end;


     

  • 相关阅读:
    Leetcode192. 统计词频
    Leetcode1046. 最后一块石头的重量
    Ubuntu20.04 NS3安装配置
    Ubuntu20.04 中文输入法+截图设置+NetAnim安装
    如何注册谷歌邮箱Gmail
    HDU 2612 Find a way
    友链
    2020沈阳区域赛补题&总结
    XShell中设置便捷的复制粘贴
    Hyper Text 超文本
  • 原文地址:https://www.cnblogs.com/interdrp/p/1614620.html
Copyright © 2011-2022 走看看