How to open a .bat file? [duplicate]

The .bat file has this context "start client.exe ur;name=test;ip=79.114.123.26;port=8888" Can anyone tell me the instuctions how to run it, thanks in advance

3

1 Answer

You can't run .bat files, and also .exe files directly on linux. You can install wine program to use win applications. Even if you run .bat file, the .bat file will not be able to run client.exe program.

wine installation:

sudo apt-get install wine
wine winappname

The best way is writing a new bash script for linux.

You Might Also Like