run as service

is there a parameter in wrapper.conf or an argument for wrapper.exe that I can start the service after calling install_server.bat without restarting the machine?

If you add the following to the install_service.bat file at the end.

net start

In our case this looks like

net start riscm_application_server

Regards

Zuke:
If you add the following to the install_service.bat file at the end.

net start

In our case this looks like

net start riscm_application_server

Regards

Thanks Zuke! I appreciate the help. I found a parameter wrapper.exe -t. Have you tried to use it?

Hi

According to the Wrapper website

, the following switches can be used when starting the wrapper.

-c  --console run as a Console application
  -t  --start   starT an NT service
  -a  --pause   pAuse a started NT service
  -e  --resume  rEsume a paused NT service
  -p  --stop    stoP a running NT service
  -i  --install Install as an NT service
  -it --installstart Install and sTart as an NT service
  -u  --update Update an installed NT service
  -r  --remove  Uninstall/Remove as an NT service
  -l=<code> --controlcode=<code> send a user controL Code to a running NT service
  -d  --dump    request a thread Dump
  -q  --query   Query the current status of the service
  -qs --querysilent Silently Query the current status of the service
  -h  --hostid  prints a list of HostIds which can be used to license this host.
  -v  --version print the wrapper's version information.

We dont use anything over and above the default setup.
But -t sounds like what your looking for.