I created an MSI setup via Visual Studio 2008 for my application, and added a registry key to windows\run for automatic startup, but also implemented a function in my application to disable automatic startup. However, when the application is restarted, the key is automatically repaired.

How to prevent MSI from repairing the key??

Thank you!

link|improve this question

possible duplicate of MSI Installer start auto-repair when service starts – Hans Passant Dec 30 '10 at 15:26
feedback

2 Answers

up vote 2 down vote accepted

The registry key is repaired because it was installed by your package and Windows Installer knows that it should be present. Some possible solutions are:

  1. Move the entry in a separate component which doesn't have a Component ID. This way the component is not registered with Windows Installer.
  2. Use a custom action to create the registry entry during install.
link|improve this answer
thanks, but I don't know how to do either. Could you care to explain? I don't know how to choose the component ID of the entry, not how to create a custom action for that, since visual studio doesn't offer me any such thing in custom actions... – Marin Jan 4 '11 at 11:49
You can edit the components with Orca or with a more powerful tool. Visual Studio is very limited when it comes to creating installers. A custom action can use custom code. For example you can create an EXE which handles the registry entries. After creating the EXE you can add it as a custom action in your setup project. – Cosmin Pirvu Jan 5 '11 at 7:03
feedback

Good answer from Cosmin Pirvu, this should work. Alternatively you can write the registry setting with a component and set a keypath value in the registry that your application won't touch at runtime. Sort of like a flag from the installer:

REGEDIT4

[HKEY_LOCAL_MACHINE\Software\Company\Product\1.0\Settings]
"InstallerFlag"="1"
"HostName"="blah.blah.com"

The "InstallerFlag" value above would be the keypath for your registry component. HostName is written along with InstallerFlag, and can subsequently change without a repair being triggered. Note that you should not set settings in HKEY_LOCAL_MACHINE from an application at all, but this solution will work for keys in HKEY_CURRENT_USER also.

link|improve this answer
Why was this downvoted? I assume it is some sort of payback from Cosmin Pirvu because I downvoted a dangerous solution he proposed elsewhere (without stating the risks). All I want to say is that the solution I propose here is safe, and it works. – Glytzhkof Jun 21 '11 at 17:18
feedback

Your Answer

 
or
required, but never shown

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