Ver Mensaje Individual
  #5 (permalink)  
Antiguo 10/05/2006, 05:19
Avatar de dogduck
dogduck
 
Fecha de Ingreso: enero-2006
Ubicación: ¿Atlantida, Hesperides, Islas afortunadas?
Mensajes: 2.231
Antigüedad: 19 años, 3 meses
Puntos: 19
Otra manera con un vbs:
Cita:
rem --- delay.vbs --- dogduck
ejecuta()
Function Espera(Segundos)
Dim hora
hora = Timer
Do While Timer - hora < Segundos
rem
Loop
ejecuta()
End Function
Function ejecuta()
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run("cmd /c start /MIN cmd /c fichero.bat")
Espera(60)
End Function
Editado para corregir: en negrita

Última edición por dogduck; 10/05/2006 a las 05:52