windows service
-
Open services.msc. Right click on any service. You can see properties menu in pop menu. When you open properties of the service. you will see dependencies tab. Regards, Sunil G.
no dependencies
-
no dependencies
-
anyway start type is automatic
-
protected override void OnStart(string[] args) { inform("START");// for event log timer1.Start(); proccessorid();//I give all system info learnsystem(); }
Get the learnsystem out of the OnStart; it doesn't belong there. OnStart must start the process and exit; that's all.
-
Get the learnsystem out of the OnStart; it doesn't belong there. OnStart must start the process and exit; that's all.
where do I get it
-
where do I get it
Probably in the main part of the Service -- perhaps check to see whether or not the system is learned:
If not learned
Try to learn
If failed, log and return
Do stuffYou could then periodically check for changes in the system, too.