' Runs the Laravel scheduler with NO visible console window.
' Invoked every minute by the QAProjectDashboard-Scheduler task (via wscript.exe).
Dim shell
Set shell = CreateObject("WScript.Shell")
shell.CurrentDirectory = "C:\QA Project Dashboard\laravel"
' 0 = hidden window, False = don't wait for it to finish
shell.Run """C:\PHP\php.exe"" artisan schedule:run", 0, False
