How to prevent users from closing my executable(exe) application using task manager despite of their privileges?
I usually use Lunch4j to convert my excecutable jar file to .exe
file, but alt+f4
is enough to close the program.
My question is, is there any thing, programmatically in java before wrapping as exe
, or after that in system configurations, that I can do to make it unclosable "access denied" or to mark the application as a system service if that is useful in this case?
Thank you