AutomaticUpdater

I'm trying to automaticaly update a windows service with AutomaticUpdate. This service has a monitor that shows to the user some informations like version and status. When the update is ready to install I kill the monitor process so It can be updated too. But how can I restart this monitor after the update?

PS.: This monitor is in a separate exe same folder the service.

You would have to launch the monitor from your service. And you would have to launch it in the correct session (because the service runs in a separate non-visible session).

Does that make sense?

thanks