Conditional automatic start of Cumulus on computer start
Posted: Sat 26 Jan 2013 5:46 pm
I use a batch file to automatically start Cumulus whenever my computer starts (or restarts) and have found it useful so I thought I'd share the idea.
This is what I use:
@ECHO OFF
TIMEOUT /T 30
REM Total Delay = 30 seconds
START "" "C:\Cumulus\Cumulus.exe"
When the .bat filename is placed in the Windows Startup folder, this batch file gives the user 30 seconds to manually abort. If there is no action taken from the keyboard, Cumulus starts. If I don't want Cumulus to start - for example, if I'm doing some testing that requires re-starting the computer more than once, I don't want Cumulus to start and then have to be stopped again for subsequent re-boots.
It's a bit primitive but it works for me.
(Note the path to the Cumulus.exe file must match your own.)
Les
This is what I use:
@ECHO OFF
TIMEOUT /T 30
REM Total Delay = 30 seconds
START "" "C:\Cumulus\Cumulus.exe"
When the .bat filename is placed in the Windows Startup folder, this batch file gives the user 30 seconds to manually abort. If there is no action taken from the keyboard, Cumulus starts. If I don't want Cumulus to start - for example, if I'm doing some testing that requires re-starting the computer more than once, I don't want Cumulus to start and then have to be stopped again for subsequent re-boots.
It's a bit primitive but it works for me.
(Note the path to the Cumulus.exe file must match your own.)
Les