I'm writing an application that will have an option to run on Windows Startup.
I can't stand when applications bog my PC down before it has really settled, and this is a non-critical application. I'd like my application to politely wait for all other startup items to finish and settle so that the user's PC becomes responsive before it starts doing any work.
How would I go about detecting this condition? I suppose I could traverse the registry and look for all startup processes to be running, or use a longish timer. I'm just hoping there is another less hackish trick I might use.
EDIT: The application has a UI and cannot run as a service. It does have a tray mode. It does some image rendering.