
Set INFOCENTER_TITLE="Eclipse Infocenter"įor %%i in ("%~dp0") do (set INFOCENTER_DIR=%%~dpi) In the Eclipse installation directory create the file install_as_service.bat with following content: set INFOCENTER_PORT=8088 Extract prunsrv.exe from root directory of the downloaded ZIP archive into your Eclipse installation directory.Download commons-daemon-1.0.15-bin-windows.zip from.Step-by-step instruction to run Eclipse Infocenter (which is a headless RCP application and contained in all Eclipse IDE packages) as Windows service: To run a headless Eclipse RCP application as Windows service I use successfully Apache Commons' prunsrv.exe ( download here) for several years. "%~dp0TESTSERVICE.exe" install %SERVICE_TITLE% -Startup=auto -StartMode=java -StartImage="%ECLIPSE_DIR%eclipsec.exe" -StartPath="%ECLIPSE_DIR%\" ++StartParams="-noSplash -pluginCustomization plugin_customization.ini -application com.eu.app.HEADLESSIPMDT -data \"%ECLIPSE_DIR%workspace\" -configuration \"%ECLIPSE_DIR%configuration\"" -LogPath="%ECLIPSE_DIR%\" -LogLevel="Error" -LogPrefix="service" Tried this : set SERVICE_NAME=TESTSERVICE exe file as windows service so that it launch my headless application. So basically I need a way to to register this. exe and then tried sc.exe(give error 1053) and NSSM(executable path always refer to nssm.exe instead of my application).

Tried sc.exe command but this didn't work.bat file it starts our application in Non UI mode. Java -jar plugins/_1.3.0.v20130327-1440.jar -pluginCustomization plugin_customization.ini -application -data %WORKSPACE% -noExit -isHeadLess The headless build is started using a batch file which contains following : set WORKSPACE= What I need is when the installation of our application is completed the headless build should be register as window service.

I currently developed an Eclipse application which also has a headless build available to integrate with some other application.
