Re: [firebird-support] FB Silent install Exe

2012-07-31 Thread Mr. John
Maybe this will help you : 
 download NSIS from there :  http://nsis.sourceforge.net/Main_Page
create a text file with .NSI  extension,setup.nsi with content below.
rename wFirebirdKIT  with the name of your setup file,save and then right click 
on the file and chose Compile NSIS script ,now you'll have an installer for 
your application and also you can install silent firebird server: There is a 
manual and examples on how to use NSIS scripts,check \Program Files\NSIS\..

setup.nsi :


 !include MUI.nsh

 !define wFirebirdKIT  Firebird-2.5.1.26351_1_Win32.exe

; The name of the installer
Name My application

; The file to write
OutFile myapp_setup.exe

; The default installation directory
InstallDir $PROGRAMFILES\myapp

; Request application privileges for Windows Vista
RequestExecutionLevel admin

;

; Pages

 !insertmacro MUI_PAGE_COMPONENTS
 !insertmacro MUI_PAGE_INSTFILES



; The stuff to install
Section Firebird server
  SetOutPath $temp

  File c:\${wFirebirdKIT}
  ExecWait '${wFirebirdKIT} /VERYSILENT '
  delete ${wFirebirdKIT}

  
SectionEnd

Section My application files
 ;put your app files here
SectionEnd









 From: Allan_Fernandes allan_fernan...@yahoo.co.uk
To: firebird-support@yahoogroups.com 
Sent: Tuesday, July 31, 2012 7:07 AM
Subject: [firebird-support] FB Silent install Exe
 

  
Hi,

I understood the parameters for silent install (/SILENT, /VERYSILENT, .).
I do not know what to run.
I tried Firebird-2.0.3.12981-1-Win32.exe /SILENT ...
Also I want to try with the FB2 as my program is already working fine with it.

Thanks


 

[Non-text portions of this message have been removed]



[firebird-support] FB Silent install Exe

2012-07-31 Thread Allan Fernandes
I think my question is misunderstood. All I want to know is that the parameters 
apply to which exe ?
/SILENT, /VERYSILENT, ...

[Non-text portions of this message have been removed]



Re: [firebird-support] FB Silent install Exe

2012-07-31 Thread Mr. John
 the parameters apply  to setup file




 From: Allan Fernandes allan_fernan...@yahoo.co.uk
To: firebird-support@yahoogroups.com firebird-support@yahoogroups.com 
Sent: Wednesday, August 1, 2012 8:46 AM
Subject: [firebird-support] FB Silent install Exe
 

  
I think my question is misunderstood. All I want to know is that the parameters 
apply to which exe ?
/SILENT, /VERYSILENT, ...

[Non-text portions of this message have been removed]


 

[Non-text portions of this message have been removed]



[firebird-support] FB Silent install Exe

2012-07-30 Thread Allan_Fernandes
Hi,

I understood the parameters for silent install (/SILENT, /VERYSILENT, .).
I do not know what to run.
I tried Firebird-2.0.3.12981-1-Win32.exe /SILENT ...
Also I want to try with the FB2 as my program is already working fine with it.

Thanks