I want to launch static function from jar file and recieve its return value during install time. Is there some other way, rather then executing java.exe?
How can I launch java code from InstallAnywhere?
1.6k views Asked by Stepan Yakovenko At
1
I really fail to understand the reason for downvotes...
You can run custom code during the installation by extending from CustomCodeAction of InstallAnywhere. All you need to do is to override the
install
anduninstall
methods of the base class. Please find the snippet of the sample code below.Good luck!