[OFF TOPIC]
quote:
Originally posted by cardshark
Cookie, do you know any easy way to reorganize the order programs boot in during startup? This allows you to disable programs and keep them from starting at all, but not to change the point in the order that they start.
Because you can't order them...
Windows is multitasking, this means there is no way to know what is started up first, and certainly no way to know what is ended starting up first. It can be program A one day and program B the other day...
This is impossible without making your own startup program...
Thus the only thing you can do is make your own startup program. This program should be the _only_ thing which starts up and thus listed in all those startup entries. The program itself, starts up your other stuff in a controlled way: It starts up program A, waits till it has finished starting up, then starts up program B, etc...
To do this in the proper way isn't so easy or strait forward. Maybe some program exists which does this, I don't know, search google... But even then you need to test this out first before blindfully trust on this application as there are many things which can go wrong or even don't work... (eg: I wouldn't trust an app made by some random guy right away; the guy needs to have good knowledge about all this in order to make this program perform decently and not just start A, start B, start C with some shell function as that wouldn't work in some circumstances).
A side effect which is certain to happen is that you boot up time will be _significantly_ longer if you use such workaround though...
[/OFF TOPIC]