Is it possible to run an application with a javaagent
without calling
java -javaagent:MyJavaAgent -jar MyAppToRun
with a batch file ? (To call the javaagent
directly when the app is launching, without passing by an batch file)
If yes, how? By modifying the manifest file of MyAppToRun
? By modifying is code?
Thanks!