At start trying to run a script with .pys extension would produce an error about not being able to find a scripting engine. Fair enough
I've since followed a few tutorials and I think that Python is now correctly installed in Windows as a script engine.
I can run a simple script like "import os print(os.getcwd()) WScript.Echo("The script name is", WScript.ScriptName)"
and execute it by calling cscript .\test.pys and it works as expected. I think this means Pythonscript has installed successfully since cscript seems to understand python language now.
If I try a simple script like Message("test") nothing happens. I am not getting any error like at the start, but simply nothing happens.
How would I go about debugging this problem? I'm not getting any error, I can't find any log file or error log. Any tips as to how to proceed with this?