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;


     

  • 相关阅读:
    win32获取其它进程变量地址存放的信息
    c#中的组件拖拽和MouseMove事件
    C# 使用消息驱动
    python使用dbm持久字典详解
    python http请求
    Windows 7下解决因为itunes备份导致C盘过度臃肿问题
    鼠标形状
    IE Haslayout 详解摘自网友
    Zoom属性摘自网友
    css公共属性
  • 原文地址:https://www.cnblogs.com/interdrp/p/1614620.html
Copyright © 2011-2022 走看看