1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
|
<?xml version="1.0" encoding="utf-8" ?>
<Wix xmlns="http://schemas.microsoft.com/wix/2003/01/wi">
<!-- *****************************************************************************************
Product
-->
<!--
SetVersion updates: Name, Id, Version. Do not change them manually.
-->
<Product Id="D2B3C901-F1AF-4DB5-974C-143373ED5406" UpgradeCode="B3E01DF7-2E77-4CDB-8437-386DF0822733"
Language="1033" Manufacturer="MySQL AB" Name="MySQL Tools for 5.0" Version="5.0.0">
<!-- *****************************************************************************************
Package
-->
<Package Keywords="Installer,MSI,Database" Description="MySQL Tools for 5.0" Manufacturer="MySQL AB"
InstallerVersion="200" Platforms="Intel" Languages="1033" SummaryCodepage="1252" Compressed='yes'
Id="????????-????-????-????-????????????" />
<Condition Message="The operating system is not adequate for running [ProductName].">VersionNT >= 500</Condition>
<Condition Message="The processor is not adequate for running [ProductName].">Intel >= 5</Condition>
<Condition Message="The amount of RAM is not adequate for running [ProductName].">PhysicalMemory >= 64</Condition>
<Condition Message="You need Administrator privileges to be able to install [ProductName].">Privileged</Condition>
<!-- *****************************************************************************************
Custom Actions
-->
<!-- <CustomAction Id="GrtConfigWizard" FileKey="GrtBindingWizard.exe" ExeCommand="QuietOnSuccess" Execute="oncePerProcess"
Return="ignore" />-->
<CustomAction Id="NewerVersionInstalled" Error="A newer version of this product is already installed." />
<!-- *****************************************************************************************
Upgrade Information
-->
<Upgrade Id="B3E01DF7-2E77-4CDB-8437-386DF0822733">
<!--
SetVersion updates: Maximum
-->
<UpgradeVersion Property="PREVIOUSVERSIONINSTALLED" Minimum="1.0.0" Maximum="1.0.0" IncludeMaximum="no"
IncludeMinimum="yes" />
<!--
SetVersion updates: Minimum
Don't change the Property and Minimum attributes order and values since they are used by SetVersion
-->
<UpgradeVersion Property="NEWERPRODUCTFOUND" Minimum="1.0.0" Maximum="1.0.999" OnlyDetect="yes"
IncludeMinimum="no" />
</Upgrade>
<!-- *****************************************************************************************
CAB file
-->
<Media Id="1" Cabinet="product.cab" EmbedCab="yes" />
<!-- *****************************************************************************************
Registry entries
-->
<DirectoryRef Id="INSTALLDIR">
<Component Id="RegKeys" Guid="B8F721D8-95AC-48FA-BAFD-CB94646A0BC2" DiskId="1">
<Registry Id="MysqlKey" Root="HKLM" Key="SOFTWARE\MySQL AB\[ProductName]"
Action="createKeyAndRemoveKeyOnUninstall"/>
<Registry Id="Version" Root="HKLM" Key="SOFTWARE\MySQL AB\[ProductName]"
Name="Version" Type="string"
Value="[ProductVersion]"/>
<Registry Id="Location" Root="HKLM" Key="SOFTWARE\MySQL AB\[ProductName]"
Name="Location" Type="string"
Value="[INSTALLDIR]"/>
</Component>
<Component Id="RegKeysMA" Guid="B8F721D8-95AC-48FA-BAFD-CB94646A0BC2" DiskId="1">
<Registry Id="MAMysqlKey" Root="HKLM" Key="SOFTWARE\MySQL AB\MySQL Administrator 1.2"
Action="createKeyAndRemoveKeyOnUninstall"/>
<Registry Id="MAVersion" Root="HKLM" Key="SOFTWARE\MySQL AB\MySQL Administrator 1.2"
Name="Version" Type="string"
Value="[ProductVersion]"/>
<Registry Id="MALocation" Root="HKLM" Key="SOFTWARE\MySQL AB\MySQL Administrator 1.2"
Name="Location" Type="string"
Value="[INSTALLDIR]"/>
</Component>
<Component Id="RegKeysQB" Guid="B8F721D8-95AC-48FA-BAFD-CB94646A0BC2" DiskId="1">
<Registry Id="QBMysqlKey" Root="HKLM" Key="SOFTWARE\MySQL AB\MySQL Query Browser 1.2"
Action="createKeyAndRemoveKeyOnUninstall"/>
<Registry Id="QBVersion" Root="HKLM" Key="SOFTWARE\MySQL AB\MySQL Query Browser 1.2"
Name="Version" Type="string"
Value="[ProductVersion]"/>
<Registry Id="QBLocation" Root="HKLM" Key="SOFTWARE\MySQL AB\MySQL Query Browser 1.2"
Name="Location" Type="string"
Value="[INSTALLDIR]"/>
</Component>
<Component Id="RegKeysMT" Guid="B8F721D8-95AC-48FA-BAFD-CB94646A0BC2" DiskId="1">
<Registry Id="MTMysqlKey" Root="HKLM" Key="SOFTWARE\MySQL AB\MySQL Migration Toolkit 1.1"
Action="createKeyAndRemoveKeyOnUninstall"/>
<Registry Id="MTVersion" Root="HKLM" Key="SOFTWARE\MySQL AB\MySQL Migration Toolkit 1.1"
Name="Version" Type="string"
Value="[ProductVersion]"/>
<Registry Id="MTLocation" Root="HKLM" Key="SOFTWARE\MySQL AB\MySQL Migration Toolkit 1.1"
Name="Location" Type="string"
Value="[INSTALLDIR]"/>
</Component>
<Component Id="RegKeysWB" Guid="B8F721D8-95AC-48FA-BAFD-CB94646A0BC2" DiskId="1">
<Registry Id="WBMysqlKey" Root="HKLM" Key="SOFTWARE\MySQL AB\MySQL Workbench 1.0"
Action="createKeyAndRemoveKeyOnUninstall"/>
<Registry Id="WBVersion" Root="HKLM" Key="SOFTWARE\MySQL AB\MySQL Workbench 1.0"
Name="Version" Type="string"
Value="[ProductVersion]"/>
<Registry Id="WBLocation" Root="HKLM" Key="SOFTWARE\MySQL AB\MySQL Workbench 1.0"
Name="Location" Type="string"
Value="[INSTALLDIR]"/>
</Component>
</DirectoryRef>
<!-- *****************************************************************************************
Installation Features
-->
<!-- *****************************************************************************************
Common files
-->
<Feature Id="MysqlGuiToolsCommon" Title="Common Components" Description="Common components for all GUI tools"
Level="1" ConfigurableDirectory="INSTALLDIR" Absent="disallow" AllowAdvertise="no">
<ComponentRef Id="RegKeys" />
<ComponentRef Id="Third_Party_Libraries" />
<ComponentRef Id="Gui_Libraries" />
<ComponentRef Id="grtsh.exe" />
<ComponentRef Id="XML_Files" />
<ComponentRef Id="Images" />
<ComponentRef Id="Images_GRT_DB" />
<ComponentRef Id="Images_Struct" />
<ComponentRef Id="Images_Textures" />
<ComponentRef Id="Grt_Java_Eclipse_Project" />
<ComponentRef Id="Grt_Java_Modules" />
<ComponentRef Id="Grt_Java_Lib" />
<ComponentRef Id="Grt_Lua" />
<ComponentRef Id="Grt_Res" />
<ComponentRef Id="locale_files" />
<ComponentRef Id="Font1" />
<ComponentRef Id="Font2" />
<ComponentRef Id="Font3" />
<ComponentRef Id="Font4" />
</Feature>
<!-- *****************************************************************************************
MySQL Administrator
-->
<Feature Id="MysqlAdministrator" Title="MySQL Administrator" Description="Application to configure and manage a MySQL Server"
Level="1" ConfigurableDirectory="INSTALLDIR" Absent="allow" AllowAdvertise="yes">
<ComponentRef Id="RegKeysMA" />
<ComponentRef Id="MySQLAdministrator.exe" />
<ComponentRef Id="MySQLSystemTrayMonitor.exe" />
<ComponentRef Id="mysqladministrator.chm" />
<ComponentRef Id="ma_lib" />
</Feature>
<!-- *****************************************************************************************
MySQL Query Browser
-->
<Feature Id="MysqlQueryBrowser" Title="MySQL Query Browser" Description="Database querying application"
Level="1" ConfigurableDirectory="INSTALLDIR" Absent="allow" AllowAdvertise="yes">
<ComponentRef Id="RegKeysQB" />
<ComponentRef Id="MySQLQueryBrowser.exe" />
<ComponentRef Id="mysqlquerybrowser.chm" />
<ComponentRef Id="qb_lib" />
<ComponentRef Id="QBDocumentation" />
</Feature>
<!-- *****************************************************************************************
MySQL Migration Toolkit
-->
<Feature Id="MysqlMigrationToolkit" Title="MySQL Migration Toolkit" Description="Toolkit to migrate database schemata from other database vendors"
Level="1" ConfigurableDirectory="INSTALLDIR" Absent="allow" AllowAdvertise="yes">
<ComponentRef Id="RegKeysMT" />
<ComponentRef Id="MySQLMigrationToolkit.exe" />
<ComponentRef Id="MySQLMigrationToolkit.chm" />
</Feature>
<!-- *****************************************************************************************
MySQL Workbench
-->
<Feature Id="MysqlWorkbench" Title="MySQL Workbench" Description="Schema design application"
Level="0" ConfigurableDirectory="INSTALLDIR" Absent="allow" AllowAdvertise="yes">
<ComponentRef Id="RegKeysWB" />
<ComponentRef Id="MySQLWorkbench.exe" />
<ComponentRef Id="MySQLWorkbench.chm" />
<ComponentRef Id="wb_lib" />
</Feature>
<!-- *****************************************************************************************
Languages
-->
<Feature Id="Locale" Title="Language Support" Description="Support for various languages"
Level="1" ConfigurableDirectory="INSTALLDIR" Absent="allow" AllowAdvertise="yes">
<Feature Id="de" Title="German" Description="German language files"
Level="1" ConfigurableDirectory="INSTALLDIR" Absent="allow" AllowAdvertise="yes">
<ComponentRef Id="locale_files_de" />
</Feature>
<Feature Id="el_GR" Title="Greek" Description="Greek language files"
Level="1" ConfigurableDirectory="INSTALLDIR" Absent="allow" AllowAdvertise="yes">
<ComponentRef Id="locale_files_el_GR" />
</Feature>
<Feature Id="ja" Title="Japanese" Description="Japanese language files"
Level="1" ConfigurableDirectory="INSTALLDIR" Absent="allow" AllowAdvertise="yes">
<ComponentRef Id="locale_files_ja" />
</Feature>
<Feature Id="pl" Title="Polish" Description="Polish language files"
Level="0" ConfigurableDirectory="INSTALLDIR" Absent="allow" AllowAdvertise="yes">
<ComponentRef Id="locale_files_pl" />
</Feature>
<Feature Id="pt_BR" Title="Portuguese from Brazil" Description="Portuguese from Brazil language files"
Level="1" ConfigurableDirectory="INSTALLDIR" Absent="allow" AllowAdvertise="yes">
<ComponentRef Id="locale_files_pt_BR" />
</Feature>
</Feature>
<!-- *****************************************************************************************
End of Feature
-->
<!-- *****************************************************************************************
Include UI
-->
<?include source\mysql_common_ui.inc ?>
<!-- *****************************************************************************************
Properties
-->
<!-- The properties are sorted alphabetically after their Id's -->
<Property Id="_IsMaintenance">Change</Property>
<Property Id="_IsSetupTypeMin">Complete</Property>
<Property Id="ALLUSERS"><![CDATA[2]]></Property>
<Property Id="AgreeToLicense">No</Property>
<Property Id="ApplicationUsers">AllUsers</Property>
<Property Id="ARPPRODUCTICON">MAIcon.exe</Property>
<!-- <Property Id="ARPNOMODIFY">0</Property> -->
<Property Id="ARPURLUPDATEINFO">http://www.mysql.com/products/guitools/</Property>
<Property Id="ARPURLINFOABOUT">http://www.mysql.com/products/guitools/</Property>
<Property Id="INSTALLLEVEL">200</Property>
<Property Id="ProgressType3">installs</Property>
<Property Id="ProgressType2">installed</Property>
<Property Id="ProgressType1">Installing</Property>
<Property Id="ProgressType0">install</Property>
<Property Id="ReinstallFileVersion">o</Property>
<Property Id="RebootYesNo">Yes</Property>
<Property Id="ReinstallModeText">omus</Property>
<Property Id="ReinstallRepair">r</Property>
<Property Id="SetupType">Typical</Property>
<!-- *****************************************************************************************
Admin UI Sequence
-->
<AdminUISequence>
<Show Dialog="SetupCompleteErrorDialog" OnExit="error" />
<Show Dialog="SetupInterruptedDialog" OnExit="cancel" />
<Show Dialog="SetupCompleteSuccessDialog" OnExit="success" />
<Show Dialog="SetupInitializationDialog" Before="CostInitialize" />
<Show Dialog="AdminWelcomeDialog" After="CostFinalize" />
<Show Dialog="SetupProgressDialog" After="AdminWelcomeDialog" />
</AdminUISequence>
<!-- *****************************************************************************************
Install Execute Sequence
-->
<InstallExecuteSequence>
<Custom Action="NewerVersionInstalled" After="FindRelatedProducts">NEWERPRODUCTFOUND</Custom>
<RemoveExistingProducts After="InstallInitialize"/>
<!-- <ScheduleReboot After="PublishProduct">ISSCHEDULEREBOOT</ScheduleReboot> -->
<!-- <Custom Action="GrtConfigWizard" After="InstallFinalize">Not Installed And (Not PATCH Or IS_MAJOR_UPGRADE)</Custom>-->
</InstallExecuteSequence>
<!-- *****************************************************************************************
Install UI Sequence
-->
<InstallUISequence>
<Show Dialog="SetupCompleteErrorDialog" OnExit="error" />
<Show Dialog="SetupInterruptedDialog" OnExit="cancel" />
<Show Dialog="SetupCompleteSuccessDialog" OnExit="success" />
<Custom Action="NewerVersionInstalled" After="FindRelatedProducts">NEWERPRODUCTFOUND</Custom>
<Show Dialog="InstallWelcomeDialog" After="CostFinalize">Not Installed And (Not PATCH Or IS_MAJOR_UPGRADE)</Show>
<Show Dialog="SetupResumeDialog" After="InstallWelcomeDialog">Installed And (RESUME Or Preselected) And Not PATCH</Show>
<Show Dialog="MaintenanceWelcomeDialog" After="SetupResumeDialog">Installed And Not RESUME And Not Preselected And Not PATCH</Show>
<Show Dialog="SetupProgressDialog" After="MaintenanceWelcomeDialog" />
</InstallUISequence>
<!-- *****************************************************************************************
Binary files
-->
<Binary Id="AdminBackground" src="resources/AdminBackground.jpg" />
<Binary Id="AdminHeader" src="resources/AdminHeader.jpg" />
<Binary Id="NewBinary2" src="resources/binary/binary2" />
<Binary Id="NewBinary3" src="resources/binary/binary3" />
<Binary Id="NewBinary4" src="resources/binary/binary4" />
<Binary Id="NewBinary5" src="resources/binary/binary5" />
<Binary Id="NewBinary6" src="resources/binary/binary6" />
<Binary Id="NewBinary7" src="resources/binary/binary7" />
<Binary Id="NewBinary8" src="resources/binary/binary8" />
<Binary Id="NewBinary9" src="resources/binary/binary9" />
<Binary Id="NewBinary10" src="resources/binary/binary10" />
<Binary Id="NewBinary11" src="resources/binary/binary11" />
<Binary Id="NewBinary12" src="resources/binary/binary12" />
<Binary Id="NewBinary13" src="resources/binary/binary13" />
<Binary Id="NewBinary14" src="resources/binary/binary14" />
<Binary Id="NewBinary15" src="resources/binary/binary15" />
<Binary Id="NewBinary16" src="resources/binary/binary16" />
<Binary Id="NewBinary17" src="resources/binary/binary17" />
<Binary Id="NewBinary18" src="resources/binary/binary18" />
</Product>
</Wix>
|