I have a batch file which runs a java class file.
But I want to install a software before running the class file?
When he runs batch file again then it should not ask for installing the software again.
file.bat
@echo off
cd ACR122U_MSI_Winx64_1120_P
Setup.exe
java -cp zpay-client-1.5-jar-with-dependencies.jar;.\resources com.abc.posgui.LicenseValidator
But this asks to install software everytime and does not execute java class. Any help would be appreciated.