views:

402

answers:

1

I need to add my application to the startup and hence, need to set the Registry Key with the Installation path. I have got this working through the Visual Studio Setup project but can't figure out how to do it through a ClickOnce deployment.

Anyone know how to set registry keys when using ClickOnce for installation?

+1  A: 

ClickOnce can't do this. If you want your app to start when the user logs in, you have to write code in your application to do it (copy a shortcut to the startup folder, edit the registry, etc.)

Also, keep in mind that if you write code to handle this scenario, it won't be undone when the user uninstalls your application.

Here is a forum question and blog post that should help you out. And here are similar SO questions, 401816 and 1650650.

whatknott
Thanks whatknott. After some more browsing, I also came to the same conclusion.I now have code written on form load which checks if the app is being run for the first time (based on a value in the settings file) and adds the registry key in case of first run.Also, I am checking whether the registry key already exists since ClickOnce won't delete it on uninstall
Sanket

related questions