PHP - 任务调度程序无法包含以前的目录?

The script that is scheduled:

@echo off
D:\Servers\WebServer\php\php.exe -f D:\Servers\WebServer\htdocs\test\test.php
pause

When I run this script I get the following kind of errors:

include(../db/db.php): failed to open stream: No such file or directory in D:\Servers\WebServer\htdocs\test\test.php on line 2

Anything that seems to be a previous directory and contains ../ it doesn't seem to be able to find, and this is a very big problem for me.

I know the script works perfectly as I have tested it in browser without any issues.

Does anyone know a solution for this?