0
It is possible to start an . exe application on Windows Service c#?
Something like:
protected override void OnStart(string[] args)
{
Process.Start(@"C:\service.exe");
}
protected override void OnStop()
{
}
Thank you!
be clearer
– Joy Peter