How to add an app to launch using the installer?

I am making an installer using the "setup" project in VS2005. I want the project output - application.exe to be added to the run by modifying this registry HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Run. How can I do in a project setup. thank

+2


source to share


1 answer


Right-click the setup project in Solution Explorer, select View / Registry and in the new window that will pop up, set all the registry keys you need. You can do this sort of thing on the filesystem and choose where the files from your application will go, etc.



+2


source







All Articles