vote up 1 vote down star
1

I currently have a VS Solution with 2 projects: a WPF application and a Windows Service.

Now, I have managed to get ClickOnce working in installing my WPF application, but I also want a Windows Service to be installed (the one in the project) during this installation.

I have found ways how to programmatically start a windows service with C# code, but is there any way to incorporate this in my ClickOnce installation (because I need ClickOnce's benefit of automatic updates and such)?

flag

3 Answers

vote up 3 vote down check

I don't think you can deploy a windows service via ClickOnce in a normal fashion.

http://social.msdn.microsoft.com/Forums/en-US/winformssetup/thread/1bb64760-9622-4ca6-a1a6-3ce53e641f21

http://stackoverflow.com/questions/460118/clickonce-deploy-a-windows-service

link|flag
vote up 1 vote down

Please check DDay Update library it might give you ClickOnce stuff for updates, but first install you've got to do using another too.

link|flag
hmm this looks interesting...ill check it out – Andreas Grech Apr 20 at 17:59
vote up 0 vote down

Can you execute a process during the ClickOnce install? You might be able to write the service using Topshelf and then execute MyService.exe /install from ClickOnce.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.