Instructions how to schedule xibo maintenance job in Windows

I have set up CMS 2.0.2 on my Windows 2012 R2 machine and need to know how to schedule the xibo maintenance job. I followed the instructions in https://xibo.org.uk/docs/setup/xtr-routine-tasks to set up the job in scheduled task. The job did run successfully but how do I know if it actually did the maintenance. I have the following command in my job.

D:\xampp\php\php.exe -f “D:\xampp\htdocs\xibo\bin\xtr.php”

I noticed that the xtr.php does not look right. It has only the following in it. Where is the complete xtf.php file?

<?php /* * Spring Signage Ltd - http://www.springsignage.com * Copyright (C) 2016 Spring Signage Ltd * (xtr.php) * * This is just a wrapper for run.php */ require('run.php');

After further analysis, it looks like that xtr.php include the run.php file. So, my follow up question is how do I know for sure that the run.php ran successfully? Is there a log file that I can look into it? Please let me know. Thank you.