Best Java Launcher: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
m (Added syntax highlighting to script and script clarification) |
m (Added Original Author Page Template) |
||
Line 1: | Line 1: | ||
{{PageAuthor|Sriharshach}} | |||
== About == | == About == | ||
This script will produce an EXE that can be prepended to a JAVA jar file to produce a self executable java application. | This script will produce an EXE that can be prepended to a JAVA jar file to produce a self executable java application. |
Revision as of 15:17, 2 March 2011
Author: Sriharshach (talk, contrib) |
About
This script will produce an EXE that can be prepended to a JAVA jar file to produce a self executable java application.
Usage
- Compile NSIS script
- Execute from the DOS / Command Prompt:
copy /b test.exe+myjar.jar output.exe
Script
;This is a very simple Java Launcher ;Author: Sri Harsha Chilakapati !include FileFunc.nsi Crccheck off icon icon.ico outfile test.exe silentinstall silent section '1' sectionend function .onInit ${GetExeName} $0 ${GetParameters} $1 execwait 'javaw.exe "$0" "$1"' functionend ;usage: copy /b test.exe+myjar.jar output.exe