This is a batch file in Windows.
Here is my .bat file
@echo off
copy \"C:\\Remoting.config-Training\" \"C:\\Remoting.config\"
\"C:\\ThirdPar
Using start works fine, unless you are using a scripting language. Fortunately, there's a way out for Python - just use pythonw.exe instead of python.exe:
:: Title not needed:
start pythonw.exe application.py
In case you need quotes, do this:
:: Title needed
start "Great Python App" pythonw.exe "C:\Program Files\Vendor\App\application.py"