I have a java code in that i need to call NSIS script at run time, is it possible to call an NSIS script via java code at run time, if it possible kindly give an example..
Thanks in advance..
I don't think you can "call" NSIS from java.
The only option I see is, since you have command line options for NSIS, you can call the command line options from java using Runtime.exec()
Process child = Runtime.getRuntime().exec(your_NSIS_instructions);