How to run .bat files from Runbox?
Running on Windows 10 Trying to create a batch file so I can run .py scripts through the Run Bar. Here is the batch file text: @"C:\Python\python.exe" "C:\Python\MyScrpits\pw.py" %* @pause My problem isn't with the batch file. When I click it, it runs. I can't figure out why I get this error message when I type the scrpit name in the Run Box: C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.8_3.8.752.0_x64__qbz5n2kfra8p0\python3.8.exe: can't open file 'C:\Python\MyScrpits\Simple': [Errno 2] No such file or directory I went and edited the system enviornment variables to include the folder with the scripts but still get that message. What am I missing here? I also noticed it wasn't searching the intended path. The error message says it cant open the file in 'C:\Python\MyScripts\Simple' this is true because I have no directory with that name. Need some guidence in how to point the command to open from (for example) 'C:\Python\MyScripts' instead of the non-existent directory