I can best explain my question with an example. I recently downloaded Python for Windows, installed to C:\Python. So if I'm in folder X that contains myscript.py, and I want to invoke it, I have to call this:
> C:\Python\python.exe myscript.py
But it would be super-cool if I could just do this, from within any folder:
> python myscript.py
How do I make that "global"?