I have a Python script that runs in background on Windows. It can be launched with pythonw MyScript.pyc
I would like to do it portable, meaning it should run on Windows machines where no Python is installed. How can I do it?
I tried PyInstaller; it seems to work, however after launching the script it presents a CMD window. I would like it to run in background, without any visible front-ends.