I have a file called RXTXcomm.jar that needs to be added to the classpath. This file references another file - rxtxSerial.dll - that also needs to be added to the classpath.
For Java, how would we instruct the .exe file generated by Advanced Installer, to run a specific .class file?
*** Details
I would rather not have Advanced Installer wrap up my files in a .jar file. How would I make it so that the .exe file generated by Advanced Installer runs a ...
I need to place "RXTXcomm.jar" in lib/ and "rxtxSerial.dll" in bin/ in the current Java machine.
I also want to ensure that if the user updates their Java virtual machine, that the application doesn't stop working (as it can't find the .jar and .dll files).
How do we automate the installation of unsigned hardware drivers in Windows XP.
*** Detailed description
We are writing an installer that includes a .inf file drive for a particular piece of hardware. This piece of hardware is a USB to RS232 convertor device.
I've created a Java installation. After the .msi installs the .jar file in the target directory, I can execute this and the Java program executes normally.
However, if I execute the default .exe file in the same directory, nothing happens - whats going on? This .exe is what's pointed to in ...