I've tried running this .bat file by just double clicking it, and it works. However when I try to run it through Task Scheduler:
CD /D %~dp0
@echo on
python -W ignore DailyRates.py
PAUSE
I get the classic
C:\Windows\system32>CD /D U:\
U:\>python -W ignore DailyRates.py
'python' is not recognized as an internal or external command,
operable program or batch file.
U:\>PAUSE
Press any key to continue . . .
Which means it isn't recognizing python in my PATH, but I am in the correct directory (U: drive)