0
votes

I have written nsis script for my java project. I have successfully created a exe file using this nsis script. Final step of my installation process is installing my application as windows service using a batch file. I have installed successfully through command line using following code

"c:\program Files\program Files\test\bin\prunsrv.exe" //IS//servicename --Startup=auto --Jvm="Auto" --Classpath="%CLASSPATH%" --StartMode=jvm --StartClass=com.class.name  --StartParams start --StopMode=jvm --StopClass=com.class.name --StopParams stop

same commands I have executed through nsis script is not working well. I have tried the following code

Exec '"$INSTDIR\bin\prunsrv.exe" //IS//servicename --Startup=auto --Jvm="Auto" --Classpath="%CLASSPATH%" --StartMode=jvm --StartClass=com.class.name  --StartParams start --StopMode=jvm --StopClass=com.class.name --StopParams stop' 

$INSTDIR refer to this directory c:\program Files\test.

1
And the problem is what exactly? Is the service installed partially or not at all? Wrong configuration? - Anders
The problem is the application is not installed as windows servcie when i running nsis script. - Ami

1 Answers

1
votes

Use ExpandEnvStrings to expand %classpath% before the exec...