Automatic account creation is now enabled. Captcha authentication required for account creation and editing unless you are trusted here.
Silent Installs
From WiX Wiki at MindCapers
The condition (?) doesn't work in silent mode. To make it work I needed these elements:
<CustomAction Id="NewerVersion" Error="A later version of [ProductName] is already installed." />
<InstallExecuteSequence>
<Custom Action="NewerVersion" After="FindRelatedProducts">NEWERVERSIONDETECTED</Custom>
</InstallExecuteSequence>

