Install Shield Setup Program
We need a setup program to install the files we have included in the attached zip file .
The setup program should choose a default directory to install in c:program filesprogram_name however the user should have the ability to install the files in any directory he chooses.
This setup program will install a java program, in this case a .jar file as well as a batch file as well as some other files.
This setup program needs to modify the .bat file to include the correct path of the installed program as well as including the javapath on that users current system.
Batch File:
==========================
REM
REM
REM This should be the batch file used
REM to execute the helloworld program
REM
cd C:testtestpid
set PATH=%PATH%;C:Program Files (x86)Javajre6bin
set CLASSPATH=C:testtestpidHelloWorld1.jar;C:Program Files (x86)Javajre6librt.jar;C:Program Files (x86)Javajre6libjsse.jar;C:Program Files (x86)Javajre6libjce.jar
start /min /low java HelloWorld1
====================================
So in the batch file above all the directories need to be changed to either the right java path or the directory in which the user decided to install the jar file. Which in the zip file is the HelloWorld1.jar
The setup progam should also make a shortcut on the desktop using the .ico file provided for the icon. This shortcut to run the program should also be put in the start bar.



