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;


     

  • 相关阅读:
    如何将cordova导入Android studio,只需两步即可
    Cordova 教程 学习步骤-从零基础开始
    特效插件
    jq 命名空间
    input聚焦后光标移动至末尾
    时间常用api
    jq 便捷api jq 常用 api jq 快捷 api
    键盘事件
    创建爬网规则
    SharePoint 2013 本地开发解决方案以及程调试(真的可以)
  • 原文地址:https://www.cnblogs.com/interdrp/p/1614620.html
Copyright © 2011-2022 走看看