Change process name of Python script

process, python, windows

Solution

There's no nice way that I've found to change the name of a running process in Windows, but you can create small .exe stubs with ExeMaker rather than resorting to py2exe packaging or copying the interpreter

The exe stub uses its own module name to calculate the .py script invoked. You should be able to use an exe resource editor to change the icon.

Problem

Windows Task Manager lists all running processes in the "Processes" tab. The image name of Python scripts is always `python.exe`, or `pythonw.exe`, or the name of the Python interpreter. Is there a nice way to change the image name of a Python script, other than changing the name of the Python interpreter?

Original source