Click here to Skip to main content
15,900,907 members
Please Sign up or sign in to vote.
3.86/5 (3 votes)
See more:
Hi

I have 2 Windows Service Question

1.Is WS can work in background ? Is it posible to do some job evry 2 minutes ? (if yes, can I get some help ?)

2.How can I install WS in simple way ? (not with Installutil.exe .......)

3.How to run .exe file through WS
i'll do this:
System.Diagnostics.Process G = new Process();
G.StartInfo.FileName = @"d:\demo.exe";
G.Start();

thank's in advance
Posted

1 solution

This[^] article looks like a viable alternative :)

 
Share this answer
 


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900