I have created a batch script in order to start a custom Python script that I am running on Windows. However, what I could like to do is not have the command line window appear.
I did some research and I found that if I used the prefix START /B, the command line window will now appear.
cd %~dp0
START /B .\Modules\monitor.pyw
However, this method does not appear to work when I explicitly specify the Python executable like so:
cd %~dp0
START /B .\Python27\python .\Modules\monitor.pyw
The question is, why does the line above not work in the same way as the line with the explicit executable path? Thanks!