B4J Question Launch4J complied to exe process name ?

alienhunter

Active Member
Licensed User
Longtime User
Hi ,
did anyone figured this out , how to show in the exe name in then process name ,right now it is just java....
thanks
 

alienhunter

Active Member
Licensed User
Longtime User
According to this issue: http://sourceforge.net/p/launch4j/bugs/95/ it seems like this feature (changing process name) will not work on Windows Vista+.

Note that if you need to find out the process id then it is possible (with or without Launch4J).

Thanks
so if I got these 2 app going I will not know who is who and the taskkill will not know what to do
is use this :

B4X:
Sub AppStart (Form1 As Form, Args() As String)
   MainForm = Form1
   MainForm.Show
   Dim js As Shell
   js.Initialize("js", "tasklist", Null)
   js.Run(60000)
End Sub


100.jpg

101.jpg
 
Upvote 0
Top