ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

Main Area and Open Discussion > General Software Discussion

control startup program times

(1/1)

mouser:
someone asked a while ago about being able to control startup times of apps.
just saw this via (http://startupguru.lincolnbeach.com/sug_ss.asp):

http://startupguru.lincolnbeach.com/sug_ss.asp

Scott:
I use a command script and a command-line "sleep" utility to accomplish the same thing.

tenseiken:
I've got a batch file that runs at boot and prompts me for when and if I want to run my normal startup things.

Scott:
Here is the format for a startup command script I just came up with.  The idea is that it runs a countdown (of whatever length you specify), and shows you the numbers as it's counting down.  If you happen to be at the computer during startup, you can close the command window and prevent the startup applications from running.

The script relies on the NirSoft NirCmd utility.  I didn't bother commenting it, because it's so simple.  I guess it's worth pointing out a few things, though:

* All those blank lines are there on purpose; I just like to get the stuff that won't ever be changed out of my face.

* You can change "set Counter=30" to however long you want the countdown to be.  (Set it to something like 600 when you first set up the script, to give yourself time to change the properties of the command window.  It looks better if it's just big enough to fit the text.  :) )

* You can change any individual "nircmd wait 1000" line to alter the delay (if any) before a startup application runs.

* The double colons (i.e. "::") really do work to comment out a line.  I use it instead of "rem " because it's easier and looks better.

* You can use "nircmd execmd" in a command line if you will be launching a batch file.  It will run just the same as if you run it normally, but NirCmd (with the execmd parameter) causes the command window to be hidden.

* You can, of course, use START command parameters like "/min" (to start the window minimized), "/low" or "/high" (to alter priority), and so on.  Just one nice benefit of using the command interface.

Navigation

[0] Message Index

Go to full version