alfareed Posted December 17, 2004 Posted December 17, 2004 i need start install program after 15 sec .. what to make this ??
Nologic Posted December 17, 2004 Posted December 17, 2004 AutoIt scriptSleep ( 15000 )Run ( "setup.exe" )Exit
gon freecs Posted December 17, 2004 Posted December 17, 2004 http://unattended.msfn.org/xp/downloads.htmscroll down a little, and take a look at sleep.exe
staples Posted December 21, 2004 Posted December 21, 2004 If you would like a simpler way to do it... just create a bat or cmd file with this:@echo offPING 1.1.1.1 -n 1 -w 15000 >NUL:setup.exeThis 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.
totoymola Posted December 21, 2004 Posted December 21, 2004 If you would like a simpler way to do it... just create a bat or cmd file with this:@echo offPING 1.1.1.1 -n 1 -w 15000 >NUL:setup.exeThis 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!
alfareed Posted December 22, 2004 Author Posted December 22, 2004 If you would like a simpler way to do it... just create a bat or cmd file with this:@echo offPING 1.1.1.1 -n 1 -w 15000 >NUL:setup.exeThis 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.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now