Title says it all, I've written a script called file.py:
import sys
print(sys.argv)
When running it as python test.py arguments
it works, returning successfuly, but when running it as test arguments
using the python that's linked on %path%, it doesn't show the arguments, just the file path as argument 0. No problems with the version of python, both are the same version.
What's going on here? Python 3.4.3 on Win7 x64
EDIT: Solved using this