Comment gérer le .fichier msi avec Inno Setup?

J'ai ce code suivant avec Inno Setup.

Mais comment puis-je appliquer cette fonction similaire à .fichier msi?

msiexec /I "\package\file.msi" /qb? Comment?

procedure AfterMyProgInstall(S: String);
var
  ErrorCode: Integer;
begin
  {MsgBox('Please wait the libraries are getting installed, ' +
          'without the libraries it wont work.', mbInformation, MB_OK);}
  ExtractTemporaryFile(S);
  {SW_SHOW, SW_SHOWNORMAL, SW_SHOWMAXIMIZED, SW_SHOWMINIMIZED, SW_SHOWMINNOACTIVE, SW_HIDE}
  ShellExec('', ExpandConstant('{app}\package\' + S), '', '', SW_SHOWNORMAL,
            ewWaitUntilTerminated, ErrorCode);
end;
InformationsquelleAutor | 2012-02-16