I am trying to use Inno Setup to install a Windows service as a jar file running under NSSM (Non-Sucking Service Manager)
nssm install JarService java -jar service.jar nssm start JarService
it ends up with my service being in a paused state and it never starts.
Since the location of java.exe can change with updates, I want to be able to start the service without having an explicit path to java.exe, how can I start a Java service without an explicit path in NSSM?
java windows-services inno-setup nssm
mcarr
source share