I have two php scripts that need to be run as continuous back ground processes in WAMP server.
Wamp server is installed in window 7 PC. These scripts are already res
You can use "start" before start background script. Example:
create cron.cmd with
start /B php.exe "path to your script 1" start /B php.exe "path to your script 2"
You can show man about the start command:
cmd
help start