I have a simple batch file which has:
python mySript.py
I save the file as .bat
, I run it, everything is fine except the cmd window stays. I tried many solutions, but nothing worked.
The python script is a tkinter app, and I want to get the app window only when I run the batch file, not the cmd window (should close automtically after running the batch)
Btw, I tried also START \b
, but that didn't help.