Saturday, November 17, 2012

Delay Windows startup programs

I needed to delay the programs that launch from my startup folder.

Stick this in a batch file, and stick the shortcut to it in the startup folder

@echo off

::: 20 sec delay

timeout /t 20 > NUL

start /b "" "D:\Applications\App1.exe"
start /b "" "D:\Applications\App2.exe"

No comments:

Post a Comment