A bug exists on the H2 service installation batch file "1_install_service.bat" at line 6: The jump label "start" doesn't exist.
@echo off setlocal copy /y /b ..\bin\h2-*.jar ..\bin\h2.jar fc /b ..\bin\h2-*.jar ..\bin\h2.jar if not errorlevel 1 goto :start <-------------------------- label 'start' is missing. echo Please ensure there is only one h2-*.jar file. echo Process stopped pause goto :eof :start <--------------------------------------------------------------- it should be placed in here. rem Copyright (c) 1999, 2006 Tanuki Software Inc. rem rem Java Service Wrapper general NT service install script rem if "%OS%"=="Windows_NT" goto nt echo This script only works with NT-based versions of Windows. goto :eof ......................... -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to h2-datab...@googlegroups.com. To unsubscribe from this group, send email to h2-database+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.