I am suffering for several days and not to succeed. Can anyone give me some sort of script or something. How to make a simple program that when you open it he wait 10sec and than open another program locadet C:/5.exe . The program must be silent. So when you click on it 10sec nothing happens after 10 seconds he open another application. Thanks
You could build a .NET console app that waits for 10 seconds then shellexecutes another app - and you could have a scheduled task launch it every X hours silently
Logic is very simple as ccoonen said. 1. Write a console app using any language (.Net, VC++, VB6, etc..) 2. Wait for 10 seconds (Mostly we use a command like Sleep(10 * 1000); 3. Shell Execute the other application That's it.