How to Start Application from Windows Service
Hello.
I've got a problem. How to start Application within a Windows Service.
I used Shell and System.Diagnostics.Process.Start methods to do it.
As a result new process appear in Task Manager. But i need not a process
but a standart windows application.
If anybody could help me i'll be very thakned
Nordo
Re: How to Start Application from Windows Service
can you? a service doesn't need a console to run, but an application does, so I don't think you can do it. having said that, the simple thing to ask is if the form.visible is set to true...
Re: How to Start Application from Windows Service
every app you start is a process and will therefore be visible in the task manager. You cannot prevent an app from showing in the task manager
Re: How to Start Application from Windows Service
Hello.
I solved this problem. The simplest way is to check box
in Service managm,ent concsole "Allow service to interact with desktop"
Re: How to Start Application from Windows Service
How to start Application within a Windows Service and set the process user name al the current user?
Alex