1

私は現在、innoセットアップでインストーラーに取り組んでおり、OSのバージョンを確認し、OSがウィンドウxpの場合はウィンドウインストーラー4.5をインストールするbatファイルを実行していますが、ウィンドウインストーラー4.5が既にインストールされているかどうかを検出したい問題があります機械 ?

バージョンを表示するためにウィンドウをポップアップするコマンド msiexec がありますが、決定を下すために文字列としてそれが必要です。現在インストールされているウィンドウ インストーラーのバージョンをバット ファイルで知る方法はありますか?

 REM Check Windows Version
ver | findstr /i "5\.0\." > nul
IF %ERRORLEVEL% EQU 0 goto ver_2000
ver | findstr /i "5\.1\." > nul
IF %ERRORLEVEL% EQU 0 goto ver_XP
ver | findstr /i "5\.2\." > nul
IF %ERRORLEVEL% EQU 0 goto ver_2003
ver | findstr /i "6\.0\." > nul
IF %ERRORLEVEL% EQU 0 goto ver_Vista
ver | findstr /i "6\.1\." > nul
IF %ERRORLEVEL% EQU 0 goto ver_Win7
goto warn_and_exit

:ver_XP
start WindowsXP-KB942288-v3-x86.exe
end

今はbatファイルです。ウィンドウインストーラーを起動する前に、バージョンが4.5かどうかを確認したいのですが、4.5未満の場合はインストールします。それ以外の場合は何もインストールしません

迅速で良い対応を求める

よろしくワシフ

4

2 に答える 2

3

私はこのようなことを試してみます。commented versionこの投稿の をフォローすることもできます。

[Files]
Source: "WindowsXP-KB942288-v3-x86.exe"; DestDir: "{tmp}"

[Run]
Filename: "{tmp}\WindowsXP-KB942288-v3-x86.exe"; Check: CheckInstallMSI; OnlyBelowVersion: 0,6.0

[code]
const
  // The minimum MSI version is 4.50.0.0
  MinMSIVersionMS = (4 shl 16) or 50;
  MinMSIVersionLS = (0 shl 16) or 0;

function CheckInstallMSI: Boolean;
var
  MSIVersionMS: Cardinal;
  MSIVersionLS: Cardinal;
begin
  Result := True;

  if GetVersionNumbers(ExpandConstant('{sys}\msi.dll'), MSIVersionMS, MSIVersionLS) then
    if MSIVersionMS >= MinMSIVersionMS then
      Result := False;
end;

ソース:

于 2012-04-24T16:36:53.527 に答える
0

別の解決策:

function InitializeSetup(): Boolean;
var
 MS: cardinal;
 LS: cardinal;
 V1 : dword;
 V2 : dword;
 V3 : dword;
 V4 : dword;

 begin
  Result := true;
  if GetVersionNumbers(ExpandConstant('{sys}\msi.dll'), MS, LS) then
   begin
    V1 := MS shr 16;
    V2 := MS and $FFFF;
    V3 := LS shr 16;
    V4 := LS and $FFFF;
    if IntToStr(V1)+'.'+IntToStr(V2) < '4.5' then begin
        MsgBox('Your message...', mbConfirmation, MB_OK)             
        Result := False;    
    end;      
  end;    
 end;

コード参照: https://www.daniweb.com/programming/software-development/threads/297848/pascal-inno-question-re-cardinal

于 2016-01-20T22:16:51.493 に答える