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.