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;


     

  • 相关阅读:
    P2420 让我们异或吧(倍增)
    bzoj题目分类
    hash练习们
    bzoj1433[ZJOI2009]假期的宿舍(匈牙利)
    bzoj2427:[HAOI2010]软件安装(Tarjan+tree_dp)
    bzoj2730矿场搭建(Tarjan割点)
    codevs4511信息传递(Tarjan求环)
    进入js
    css层叠样式表
    HTML超文本标记语言
  • 原文地址:https://www.cnblogs.com/interdrp/p/1614620.html
Copyright © 2011-2022 走看看