vote up 1 vote down star

Hi friends,

I have created a desktop application in java using NETBeans IDE 6.1... and made a jar file of the application. Now I want to make its auto start up in such a way that its start up whenever client machine is booted.

Thanks in advance

Balwant

flag
For the record, link to the accompanying question: stackoverflow.com/questions/979572/… – Jonik Jun 11 at 7:56

5 Answers

vote up 0 vote down

you can write batch file and place its location in Window registry (RUN).I will soon write about it...

link|flag
vote up 0 vote down

If you simply want to have a java application autostarted in Windows you could just create a link in the users autostart folder calling javaw the same way you'd normally call java.

This is just meant FYI, the other suggestions are more general, of course, but this could be the simplest solution...

link|flag
vote up 0 vote down

Take a look at Tanuki's Java Service Wrapper. The Community version does what you need, plus a lot more.

If you only need to run a Java program periodically, I like pycron, which installs itself as a Windows service and then reads a Unix style crontab file where you would enter a line that tells pycron when it needs to run the java process (eg, every night at 3am).

link|flag
vote up 1 vote down

This installer can create a file with "msi" extension that will behave as regular windows installer. It bundles your jar file and JRE together into single file. The program acts as a "wizard", where you configure all necessary options.

Take a look at this product:Advanced Installer

Good luck.

link|flag
They appear to have a freeware version. Have you experience with this product? – Thorbjørn Ravn Andersen Jun 11 at 6:40
Hi, I have gone through the Advance Installer, and it works fine, but it is not running while I added auto start service. I don't understand what it needs. Please look into the image attachment![alt text][1] [1]: wintestorbit.info/ErrorInAdvanceInstaller.JPG/… – Balwant Singh Jun 11 at 11:04
vote up 1 vote down

There are many commercial installers which can do this http://www.advancedinstaller.com/jre-install.html

Are you looking for a free/OS one?

Thanks Krishna

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.