Is it possible to start an .exe application when starting Windows Service C #?
Something of the Type:
protected override void OnStart(string[] args)
{
Process.Start(@"C:\service.exe");
}
protected override void OnStop()
{
}
Thank you!