I want to execute “start [Filename].txt” at fixed interval.
So I decide to create windows service.
But I am not getting idea to execute this command through windows service.
Other logic i have implemented. Just remaining is execute command.
I want to execute start [Filename].txt at fixed interval. So I decide to create
Share
Process.Start will not accomplish your likely goal if in a Windows Service. It may launch the process….into session 0, so you will never see it. To launch a process from a service that the user can interact with, you will need to create the process in the user session, a pretty non-trivial thing to do from inside a windows service (but certainly possible). You might be best to look at a Windows Scheduled Task as @jglouie suggested.