I have 3 Windows Service Question
Is WS can work in background ? Is it possible to do some job every 2 minutes ? (if yes, can I get some help ?)
How can I install WS in simple way ? (not with Installutil.exe .......)
How can I run .exe file from Windows service ?
I've tried this way:
System.Diagnostics.Process G = new Process();
G.StartInfo.FileName = @"d:\demo.exe";
G.Start();
but it didn't work.