View Single Post
  #6  
Old 04-22-2010, 04:53 AM
Guest001 is offline Guest001
Registered User

Join Date: Aug 2008
Posts: 4,971

Try this

To delay your start up programs

@echo off
echo Configured by Stompem 2010
echo.
echo Program Load Will Delay...15 seconds.
echo.
echo Loading ...
@ping 124.189.242.88 -n 15 -w %1000 > nul
start /d "C:\Program Files\WizMouse" WizMouse.exe
start /d "C:\Program Files\Virtual CD v9\System" vc9tray.exe"
@ping 124.189.242.88 -n 1 -w %1000 > nul
start /d "C:\Program Files\DAEMON Tools Lite" DTLite.exe
@ping 124.189.242.88 -n 1 -w %1000 > nul
start /d "C:\Program Files\ClamWin\bin" ClamTray.exe
@ping 124.189.242.88 -n 1 -w %1000 > nul
start /d "C:\Program Files\Tools\System\Spybot - Search & Destroy" TeaTimer.exe
@ping 124.189.242.88 -n 6 -w %1000 > nul
start /d "C:\Program Files\PeerBlock" peerblock.exe
@ping 124.189.242.88 -n 12 -w %1000 > nul
start /d "%ProgramFiles%\Windows Sidebar" sidebar.exe


124.189.242.88 is just a safe address, use your own.

> nul is to tell windows not to write to log or file
Reply With Quote