Hello, I am setting up the scheduler for the following environment:

Sugar 4.5.1 Open
Windows 2003 Server, XAMPP, Apache 2.2.3, MySQL 5.0.27, PHP 5.2.0

My batch file looks like this:
cd C:\Program Files\xampp\php
php.exe -f "C:\Program Files\xampp\htdocs\sales2\cron.php"

The error it gets when I just run the batch file is:
Warning: require_once(include/utils.php): failed to open stream: No such file or directory in C:\Program Files\xampp\htdocs\sales2\include\entryPoint.php on line 83

Fatal error: require_once(): Failed opening required 'include/utils.php' (include_path='.;C:\Program Files\xampp\php\pear\') in C:\Program Files\xampp\htdocs\sales2\include\entryPoint.php on line 83

Line 83 is "require_once ('include/utils.php');"

My php.ini include looks like this:
include_path = ".;C:\Program Files\xampp\php\pear\;C:\Program Files\xampp\htdocs\sales2\include"

Any suggestions on what I have wrong?

Thanks
Gerald