Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/08/2007, 12:36
Avatar de nicolaspar
nicolaspar
 
Fecha de Ingreso: noviembre-2004
Ubicación: Villa Ballester Bs-As|Ar
Mensajes: 2.002
Antigüedad: 19 años, 5 meses
Puntos: 34
Re: Programador de Tareas

Yo lo hago con un vbs usando "ajax". El .vbs tiene lo siguiente:

Código:
set xmlhttp = createobject("Microsoft.XMLHTTP")
xmlhttp.open "GET","http://www.tusitio.com/tu_archivo.php"
xmlhttp.send(null)
timeout = 30000
while xmlhttp.readystate < 4 and timeout > 0
    timeout = timeout - 200
    wscript.sleep 200
wend
set xmlhttp = nothing
Y la tarea la llamas así:
"C:\WINDOWS\system32\wscript.exe C:\SITIOS\vbs\tu_archivo.vbs"
__________________
Mi punto de partida es Que Bueno Lo Nuevo