• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Windows 2000 startup

Argo

Lifer
Does anyone know of a way to add a program to the windows 2000 services startup list. I'm not talking about HKEY_LOCALMACHINE/Software/Microsoft/Windows/CurrentVersion/Run/ becuase if I add the program there it will close when the user logs off. I need something that will start when Win2k starts, and close only when the system shuts down.
 
Argo,
What you need is a "Service". A Service is a special program that starts when Windows starts and stops then Windows shutsdown. You cannot run any program as a service - they need to be specially written as a "Service". Some programs have two parts to them - one a service and the other a GUI (or client) using that service. Typically the Services themselves do not have any GUI.

Hope this helps,
Amit.
 
Any easier way? I really don't have time to rewrite the whole software? There should be a way to add it to the registry or something.
 
Well some softwares you can "Run as a Service" in Win2k - I dunno if that can be done in NT or not. And again those are the ones which do not require an "Active" user interaction and can handle themselves!! Otherwise you are pretty much stuck!

Amit.
 
Try using the Win2k task scheduler. You can set programs to launch at boot, login, etc. It has some nice features that you can use to take a program near a SERVICE.
 
Back
Top