The trigger for the self repair is generally possible to find in your event viewer on the system where the self-repair took place (Right click My Computer => Manage. Click continue if you get an UAC prompt, go to event viewer section). Follow the link at the end of this post for more details on event viewer entries for self repair.
Windows Installer is designed to install your application's binaries and data files and keep them installed and ensure they are the right versions. Self-repair is a mechanism to that end. Every time you launch an advertised shortcut, Windows Installer will verify the installation by checking the "component key paths" for your product. If a discrepancy is found, a repair is triggered to correct the situation. The "component key paths" are the "key files" specified for the components inside your MSI - there is one per component.
If files are deleted, moved or simply overwritten, self-repair may result (if the file isn't set as a key path self repair is not triggered). Many self-repair problems are triggered simply by developers trying to debug their installed application by replacing files on the fly, deleting files or renaming them. In other cases there are genuine design errors in the MSI that must be corrected, and at times the error source can be hard to find.
Some typical self-repair problem scenarios:
- A component key path is set to an empty folder that Windows installer removes on self repair (Triggering an endless loop of removal and subsequent self-repair). This is solved by adding the folder to the CreateFolder table instead.
- A component key path is pointing to a temporary file that has been deleted by the application. This is solved by not installing the temp file, or putting the file somewhere else and make it permanent.
- Permission problems: if a key file for a component is installed to a location that is not accessible for the user who invokes the application. Windows Installer might not "see" the installed file, or be unable to add the file to the folder. An example of this is when you install a file to a %USERPROFILE% path and then forget to set a HKCU registry keypath, and instead set the keypath to point to the %USERPROFILE% folder/file.
- Another class of self repair problems emerges in relation to terminal servers and citrix. The whole windows installer service could be locked down so any self repair invoked to add per user data could fail and consequently self repair may fail or more likely not run at all.
- There are numerous other scenarios...
MSI-expert Stefan Krüger has an article about the same issue: http://www.installsite.org/pages/en/msifaq/a/1037.htm