2

I have a game that has a side application that acts as an updater. The updater can check for updates hourly, daily or weekly. I want this updater to be ran at startup so that it can check for updates. How do i make my executable jar file run at startup on a windows xp and windows 7?

gsfd
  • 1,070
  • 2
  • 12
  • 17

1 Answers1

7

1. goto Start -> Run and then write "REGEDIT"

goto HKEY_LOCAL_MACHINE/SOFTWARE/MICROSOFT/Windows/Current Version/Run

Add a String on the right side, and set the Path for your JAR file.

2. Or you can add your JAR file into START/ALL PROGRAMS/Autostart

Sathya
  • 51
  • 7
Racooon
  • 1,468
  • 2
  • 10
  • 28