Running On Start Up
How can I make it so that my program can run when the computer starts up? is there some way to do it through Java or would I have to work with the registry (isthat possible with Java)?
Thank you
How can I make it so that my program can run when the computer starts up? is there some way to do it through Java or would I have to work with the registry (isthat possible with Java)?
Thank you
Only class I can think off which interacts actively with the machine is java.io.Runtime and there is indeed a mtd for shutdown but no method to run a method after restart so making an executible and running it by setting up in win reg will only be the option ...
Let the thread continue may be someone has a solution to this..