I try to write some batch that can autorun my python scripts.Here is my batch file:
@echo off
:: do something here
pythonw xx.py
rem run python script in the backgroud
rem but batch stops here, doesn't run the rest code
:: do something else again
So how can I fix this. Any help will be appreciated!
Related question:
Running Python Script as a Windows background process