8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 02:03:04 +01:00

Sync RC1 windows installer changes to trunk.

Remove old manual install/uninstall scripts
Add new ones
This commit is contained in:
paul_reeves 2015-11-10 09:08:19 +00:00
parent 25ca026d91
commit d8e0de00b9
4 changed files with 19 additions and 29 deletions

View File

@ -1,15 +0,0 @@
@echo off
if "%1"=="" (
instreg install -z
)
setlocal
set INSTALL_SERVICE=install -auto -classic -z
set START_SERVICE=start
if not "%1"=="" (
set INSTALL_SERVICE=%INSTALL_SERVICE% -n %1
set START_SERVICE=%START_SERVICE% -n %1
)
instsvc %INSTALL_SERVICE%
instsvc %START_SERVICE%
endlocal

View File

@ -0,0 +1,19 @@
@echo off
if "%1"=="" (
instreg install -z
)
setlocal
set INSTALL_SERVICE=install -z
set START_SERVICE=start
if not "%1"=="" (
set INSTALL_SERVICE=%INSTALL_SERVICE% -n %1
set START_SERVICE=%START_SERVICE% -n %1
)
::instsvc %INSTALL_SERVICE%
::instsvc %START_SERVICE%
endlocal
@echo.
@echo Firebird installed and started as a service using
@echo architecture specified in firebird.conf.
@echo.

View File

@ -1,14 +0,0 @@
@echo off
if "%1"=="" (
instreg install -z
)
setlocal
set INSTALL_SERVICE=install -auto -superserver -z
set START_SERVICE=start
if not "%1"=="" (
set INSTALL_SERVICE=%INSTALL_SERVICE% -n %1
set START_SERVICE=%START_SERVICE% -n %1
)
instsvc %INSTALL_SERVICE%
instsvc %START_SERVICE%
endlocal