mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 17:33:44 +01:00
32 lines
No EOL
886 B
Text
32 lines
No EOL
886 B
Text
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
<Fragment>
|
|
<DirectoryRef Id="INSTALLDIR">
|
|
<Component Id="RegKeys" Guid="*">
|
|
<RegistryKey
|
|
Id='MySQLKey'
|
|
Root='HKLM'
|
|
Key='SOFTWARE\MySQL AB\[ProductName]'
|
|
Action='createAndRemoveOnUninstall'>
|
|
<RegistryValue
|
|
Type='string'
|
|
Name='Location'
|
|
Value='[INSTALLDIR]'/>
|
|
<RegistryValue
|
|
Type="string"
|
|
Name="Version"
|
|
Value="[ProductVersion]"/>
|
|
<RegistryValue
|
|
Type="string"
|
|
Name="DataLocation"
|
|
Value="[DATADIR]"/>
|
|
</RegistryKey>
|
|
</Component>
|
|
</DirectoryRef>
|
|
<Feature
|
|
Id='RegKeys'
|
|
Display='hidden'
|
|
Level='1'>
|
|
<ComponentRef Id='RegKeys'/>
|
|
</Feature>
|
|
</Fragment>
|
|
</Wix> |