i need start install program after 15 sec ..
what to make this ??
Page 1 of 1
wait 15 sec ?
#2
Posted 17 December 2004 - 02:52 AM
AutoIt script
Sleep ( 15000 )
Run ( "setup.exe" )
Exit
Sleep ( 15000 )
Run ( "setup.exe" )
Exit
#3
Posted 17 December 2004 - 05:09 AM
#5
Posted 20 December 2004 - 07:00 PM
If you would like a simpler way to do it... just create a bat or cmd file with this:
@echo off
PING 1.1.1.1 -n 1 -w 15000 >NUL:
setup.exe
This will work on nt, w2k w2k3, wxp and you will not have to use a autoit script or compiled exe.
The trick is that you have to pick a non existant ip address (1.1.1.1) send 1 packet to it (-n 1) and wait 15000 millseconds.
@echo off
PING 1.1.1.1 -n 1 -w 15000 >NUL:
setup.exe
This will work on nt, w2k w2k3, wxp and you will not have to use a autoit script or compiled exe.
The trick is that you have to pick a non existant ip address (1.1.1.1) send 1 packet to it (-n 1) and wait 15000 millseconds.
#6
Posted 20 December 2004 - 10:47 PM
Quote
If you would like a simpler way to do it... just create a bat or cmd file with this:
@echo off
PING 1.1.1.1 -n 1 -w 15000 >NUL:
setup.exe
This will work on nt, w2k w2k3, wxp and you will not have to use a autoit script or compiled exe.
The trick is that you have to pick a non existant ip address (1.1.1.1) send 1 packet to it (-n 1) and wait 15000 millseconds.
@echo off
PING 1.1.1.1 -n 1 -w 15000 >NUL:
setup.exe
This will work on nt, w2k w2k3, wxp and you will not have to use a autoit script or compiled exe.
The trick is that you have to pick a non existant ip address (1.1.1.1) send 1 packet to it (-n 1) and wait 15000 millseconds.
Cool trick buddy!
#8
Posted 22 December 2004 - 12:08 PM
staples, on Dec 21 2004, 04:00 AM, said:
If you would like a simpler way to do it... just create a bat or cmd file with this:
@echo off
PING 1.1.1.1 -n 1 -w 15000 >NUL:
setup.exe
This will work on nt, w2k w2k3, wxp and you will not have to use a autoit script or compiled exe.
The trick is that you have to pick a non existant ip address (1.1.1.1) send 1 packet to it (-n 1) and wait 15000 millseconds.

@echo off
PING 1.1.1.1 -n 1 -w 15000 >NUL:
setup.exe
This will work on nt, w2k w2k3, wxp and you will not have to use a autoit script or compiled exe.
The trick is that you have to pick a non existant ip address (1.1.1.1) send 1 packet to it (-n 1) and wait 15000 millseconds.
Share this topic:
Page 1 of 1



Help
Back to top









