VirtualBox

source: vbox/trunk/src/VBox/Installer/win/VirtualBox.wxs@ 51043

最後變更 在這個檔案從51043是 51043,由 vboxsync 提交於 11 年 前

Windows host installer: Bugfixes.

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 20.6 KB
 
1<?xml version='1.0' encoding='windows-1252'?>
2<!--
3 VirtualBox Windows Installation Script (WiX)
4
5 Copyright (C) 2014 Oracle Corporation
6
7 This file is part of VirtualBox Open Source Edition (OSE), as
8 available from http://www.alldomusa.eu.org. This file is free software;
9 you can redistribute it and/or modify it under the terms of the GNU
10 General Public License (GPL) as published by the Free Software
11 Foundation, in version 2 as it comes in the "COPYING" file of the
12 VirtualBox OSE distribution. VirtualBox OSE is distributed in the
13 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
14-->
15
16<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
17 xmlns:difxapp="http://schemas.microsoft.com/wix/DifxAppExtension">
18
19 <?include Properties.wxi ?>
20
21<?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
22 <!-- The merge module file names -->
23 <?define Property_VBoxMergeApp = "$(env.VBOX_WIN_INST_MERGE_APP)" ?>
24 <?define Property_VBoxMergeUSB = "$(env.VBOX_WIN_INST_MERGE_USB)" ?>
25
26 <?if $(env.VBOX_WITH_NETFLT) = "yes" ?>
27 <?define Property_VBoxMergeNetworkFlt = "$(env.VBOX_WIN_INST_MERGE_NETFLT)" ?>
28 <?endif ?>
29
30 <?define Property_VBoxMergeNetworkAdp = "$(env.VBOX_WIN_INST_MERGE_NETADP)" ?>
31
32 <?if $(env.VBOX_WITH_PYTHON) = "yes" ?>
33 <?define Property_VBoxMergePython = "$(env.VBOX_WIN_INST_MERGE_PYTHON)" ?>
34 <?endif ?>
35<?endif ?>
36
37 <Product Id="*"
38 UpgradeCode="C4BAD770-BFE8-4D2C-A592-693028A7215B"
39 Name="$(env.VBOX_PRODUCT) $(env.VBOX_VERSION_STRING)"
40 Language="!(loc.LANG)"
41 Codepage="1252"
42 Version="$(var.Property_Version)"
43 Manufacturer="$(env.VBOX_VENDOR)">
44
45 <Package Id="*"
46 Keywords="Installer"
47 Description="$(env.VBOX_PRODUCT) $(var.Property_VersionExt) installation package"
48 Comments="$(env.VBOX_PRODUCT) installation package"
49 Compressed="yes"
50 Manufacturer="$(env.VBOX_VENDOR)"
51 InstallerVersion="200"
52 InstallPrivileges="elevated"
53 Platform="$(var.Property_Platform)"/>
54
55 <!-- Global properties -->
56 <Property Id="ARPPRODUCTICON">IconVirtualBox</Property>
57 <Property Id="ARPURLINFOABOUT">http://www.alldomusa.eu.org</Property>
58 <Property Id="ARPURLUPDATEINFO">http://www.alldomusa.eu.org</Property>
59
60 <!-- Install the product for all users on the system -->
61 <Property Id="ALLUSERS"><![CDATA[1]]></Property>
62
63 <!-- Force overwriting all files and re-create shortcuts to guarantee a working environment -->
64 <Property Id='REINSTALLMODE' Value='amus'/>
65
66 <!-- VirtualBox properties -->
67 <Property Id="VBOX_INSTALLDESKTOPSHORTCUT" Value="1"></Property>
68 <Property Id="VBOX_INSTALLQUICKLAUNCHSHORTCUT" Value="1"></Property>
69 <Property Id="VBOX_REGISTERFILEEXTENSIONS" Value="1"></Property>
70 <Property Id="VBOX_STARTVBOX" Value="1"></Property>
71
72 <!-- Make sure installation will not start on anything other but the NT family -->
73<?if $(env.BUILD_TARGET_ARCH) = "amd64" ?>
74 <Condition Message="!(loc.Only64Bit)">
75 VersionNT64
76 </Condition>
77<?else ?>
78 <Condition Message="!(loc.Only32Bit)">
79 NOT VersionNT64
80 </Condition>
81
82 <Condition Message="!(loc.WrongOS)">
83 NOT VersionNT=500 AND NOT Version9X AND NOT VersionNT64
84 </Condition>
85
86<?endif ?>
87
88 <Condition Message="!(loc.NeedAdmin)">
89 Privileged
90 </Condition>
91
92 <!-- Detect old innotek installation -->
93 <!-- Force a manual uninstall of an already installed innotek VirtualBox version first -->
94 <Property Id="VBOXINNOTEK">
95 <RegistrySearch Id="RegSearchInnotekVersion" Root="HKLM" Key="SOFTWARE\Innotek\VirtualBox" Name="Version" Type="raw" Win64="$(var.Property_Win64)"/>
96 </Property>
97 <Condition Message="!(loc.InnotekFound)">
98 NOT VBOXINNOTEK
99 </Condition>
100
101 <!-- *************************** Upgrade packages only ******************************* -->
102 <!-- Minimum and Maximum specify the range of versions we are supposed to update with this upgrade.
103 IncludeMaximum and IncludeMinimum specify whether the bound value is actually included in the range or not
104 (IncludeMaximum = yes meaning to find versions below or equal to the version specified in Maximum while
105 IncludeMaximum = no only finds those below the Maximum).
106 OnlyDetect tells the installer not to remove the previous product. This is useful as long as we
107 only change files in the package -->
108
109 <Upgrade Id="C4BAD770-BFE8-4D2C-A592-693028A7215B"> <!-- Upgrade of Sun xVM VirtualBox >= v1.6.0 -->
110
111 <!-- Upgrade is flagged if current-install is newer than or equal to package - TODO: should make a dialog appear asking user to confirm downgrade -->
112 <!-- Setting "OnlyDetect" to "no" makes the installer uninstall an already newer installed version -->
113 <UpgradeVersion Property="NEWERVERSIONDETECTED" Minimum="$(var.Property_Version)" OnlyDetect="no" />
114
115 <!-- Flag is set if the install will trigger an upgrade of an existing install -->
116 <UpgradeVersion Property="PREVIOUSVERSIONSINSTALLED" Minimum="1.0.0.0" Maximum="$(var.Property_Version)" IncludeMaximum="yes" />
117
118 </Upgrade>
119
120 <!-- The product's icon table -->
121 <Icon Id="IconVirtualBox" SourceFile="$(env.VBOX_WINDOWS_ICON_FILE)" />
122
123 <!-- The media/binary IDs -->
124 <Media Id="1" Cabinet="product.cab" EmbedCab="yes" />
125<?if $(env.VBOX_WITH_MSM_INSTALL) = "no" ?>
126 <?if $(env.VBOX_WITH_COMBINED_PACKAGE) = "yes" ?>
127 <Media Id="2" Cabinet="common.cab" EmbedCab="no" CompressionLevel="high" />
128 <?endif ?>
129<?endif ?>
130 <Binary Id="VBoxInstallHelper" SourceFile="$(env.PATH_OUT)\bin\VBoxInstallHelper.dll" />
131
132 <!-- Custom actions -->
133
134 <!-- Figure out where a previous installation was, if any -->
135<?if $(env.BUILD_TARGET_ARCH) = "amd64" ?>
136 <CustomAction Id="ca_OriginalTargetDir" Execute="firstSequence" Property="INSTALLDIR"
137 Value="[ProgramFiles64Folder]\$(env.VBOX_VENDOR_SHORT)\VirtualBox" />
138
139 <Property Id="EXISTINGINSTALLDIR" Secure="yes">
140 <RegistrySearch Id="RegistryGetInstallPath" Root="HKLM" Key="$(var.Property_RegKey)" Name="InstallDir"
141 Type="raw" Win64="$(var.Property_Win64)"/>
142 </Property>
143 <CustomAction Id="ca_DefaultTargetDir" Execute="firstSequence" Property="INSTALLDIR" Value="[EXISTINGINSTALLDIR]" />
144<?else ?>
145 <CustomAction Id="ca_OriginalTargetDir" Execute="firstSequence" Property="INSTALLDIR"
146 Value="[ProgramFilesFolder]\$(env.VBOX_VENDOR_SHORT)\VirtualBox" />
147
148 <Property Id="EXISTINGINSTALLDIR" Secure="yes">
149 <RegistrySearch Id="RegistryGetInstallPath" Root="HKLM" Key="$(var.Property_RegKey)" Name="InstallDir"
150 Type="raw" Win64="$(var.Property_Win64)"/>
151 </Property>
152 <CustomAction Id="ca_DefaultTargetDir" Execute="firstSequence" Property="INSTALLDIR" Value="[EXISTINGINSTALLDIR]" />
153<?endif ?>
154 <CustomAction Id="ca_UninstallTAPInstances" BinaryKey="VBoxInstallHelper"
155 DllEntry="UninstallTAPInstances" Execute="deferred" Return="check" Impersonate="no"/>
156
157 <!-- Detect old Sun installation -->
158 <!-- Force a manual uninstall of an already installed Sun VirtualBox version first -->
159 <!--<Property Id="VBOXSUN">
160 <RegistrySearch Id="RegSearchSunVersion" Root="HKLM" Key="SOFTWARE\Sun\VirtualBox" Name="Version" Type="raw" Win64="$(var.Property_Win64)"/>
161 </Property>
162 <Condition Message="!(loc.SunFound)">
163 NOT VBOXSUN
164 </Condition>-->
165
166 <CustomAction Id="ca_StartVBox" Directory="INSTALLDIR" ExeCommand="[INSTALLDIR]\VirtualBox.exe" Return="asyncNoWait" Impersonate="yes" />
167 <CustomAction Id="ca_CheckSerial" BinaryKey="VBoxInstallHelper" DllEntry="CheckSerial" Impersonate="no"/>
168
169 <CustomAction Id="ca_InstallBranding" BinaryKey="VBoxInstallHelper" DllEntry="InstallBranding" Execute="deferred" Return="check" Impersonate="no"/>
170 <CustomAction Id="ca_InstallBrandingArgs" Property="ca_InstallBranding" Value="[INSTALLDIR]" Execute="immediate"/>
171
172 <CustomAction Id="ca_UninstallBranding" BinaryKey="VBoxInstallHelper" DllEntry="UninstallBranding" Execute="deferred" Return="check" Impersonate="no"/>
173 <CustomAction Id="ca_UninstallBrandingArgs" Property="ca_UninstallBranding" Value="[INSTALLDIR]" Execute="immediate"/>
174<?if $(env.VBOX_WITH_MSM_INSTALL) = "no" ?>
175 <?include VBoxMergeAppCA.wxi ?>
176 <?include VBoxMergeNetFltCA.wxi ?>
177 <?include VBoxMergePythonCA.wxi ?>
178<?endif ?>
179
180 <Directory Id="TARGETDIR" Name="SourceDir">
181 <Directory Id="$(var.Property_ProgramFiles)" Name="PFiles">
182 <Directory Id="INSTALLDIR" Name="$(env.VBOX_PRODUCT)">
183<?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
184 <Merge Id="msm_VBoxApp" Language="!(loc.LANG)" SourceFile="$(var.Property_VBoxMergeApp)" DiskId="1" />
185<?else ?>
186 <?include VBoxMergeApp.wxi ?>
187<?endif ?>
188 <Directory Id="dir_Drivers" Name="drivers">
189 <Directory Id="dir_USB" Name="USB">
190<?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
191 <Merge Id="msm_VBoxUSB" Language="!(loc.LANG)" SourceFile="$(var.Property_VBoxMergeUSB)" DiskId="1" />
192<?else ?>
193 <?include VBoxMergeUSB.wxi ?>
194<?endif ?>
195 </Directory>
196 <Directory Id="dir_Network" Name="network">
197<?if $(env.VBOX_WITH_NETFLT) = "yes" ?>
198 <Directory Id="dir_NetFlt" Name="netflt">
199 <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
200 <Merge Id="msm_VBoxNetworkFlt" Language="!(loc.LANG)" SourceFile="$(var.Property_VBoxMergeNetworkFlt)" DiskId="1" />
201 <?else ?>
202 <?include VBoxMergeNetFlt.wxi ?>
203 <?endif ?>
204 </Directory>
205<?endif ?>
206 <Directory Id="dir_NetAdp" Name="netadp">
207<?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
208 <Merge Id="msm_VBoxNetworkAdp" Language="!(loc.LANG)" SourceFile="$(var.Property_VBoxMergeNetworkAdp)" DiskId="1" />
209<?else ?>
210 <?include VBoxMergeNetAdp.wxi ?>
211<?endif ?>
212 </Directory>
213 </Directory>
214 </Directory>
215<?if $(env.VBOX_WITH_PYTHON) = "yes" ?>
216 <Directory Id="dir_SDK" Name="sdk">
217 <Directory Id="dir_SDKInstall" Name="install">
218 <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
219 <Merge Id="msm_VBoxPython" Language="!(loc.LANG)" SourceFile="$(var.Property_VBoxMergePython)" DiskId="1" />
220 <?else ?>
221 <?include VBoxMergePython.wxi ?>
222 <?endif ?>
223 </Directory>
224 </Directory>
225<?endif ?>
226 <!-- Set up special directory IDs for referencing to the start menu
227 or the Quick Launch bar.
228 See: http://msdn.microsoft.com/en-us/library/aa368276.aspx
229 http://wix.mindcapers.com/wiki/Shortcuts_in_WiX -->
230 <Directory Id="ProgramMenuFolder">
231 <Directory Id="dir_StartMenuVBox" Name="$(env.VBOX_PRODUCT)"/>
232 </Directory>
233
234 <Directory Id="DesktopFolder" Name="Desktop"/>
235
236 <Directory Id="AppDataFolder" Name="AppData">
237 <Directory Id="dir_AppDataMicrosoft" Name="Microsoft">
238 <Directory Id="dir_AppDataMSIE" Name="Internet Explorer">
239 <Directory Id="dir_QuicklaunchFolder" Name="Quick Launch"/>
240 </Directory>
241 </Directory>
242 </Directory>
243
244 <!-- Shortcut(s) in start menu -->
245 <Component Id="cp_StartMenuVBox" Guid="C2DC321A-CE63-40EE-8A98-724DF8BD12FB" Win64="$(var.Property_Win64)">
246 <Shortcut Id="sc_StartMenuVBox" Directory="dir_StartMenuVBox" Name="$(env.VBOX_PRODUCT)" Description="$(env.VBOX_PRODUCT)"
247 Target="[INSTALLDIR]VirtualBox.exe" WorkingDirectory="INSTALLDIR"/>
248 <RegistryValue Root="HKCU" Key="$(var.Property_RegKeyInstall)"
249 Type="string" Value="installed" KeyPath="yes" />
250 <?include $(env.PATH_TARGET)\Shortcuts_StartMenu.wxi ?>
251 </Component>
252
253 <Component Id="cp_DesktopShortcut" Guid="668F8A1A-F5CE-48B3-BB1A-3042EE27B279" Win64="$(var.Property_Win64)">
254 <Condition>VBOX_INSTALLDESKTOPSHORTCUT</Condition>
255 <Shortcut Id="sc_DesktopVBox" Directory="DesktopFolder" Name="$(env.VBOX_PRODUCT)" Description="$(env.VBOX_PRODUCT)"
256 Target="[INSTALLDIR]VirtualBox.exe" WorkingDirectory="INSTALLDIR"/>
257 <RegistryValue Root="HKCU" Key="$(var.Property_RegKeyInstall)" Type="string"
258 Value="installed" KeyPath="yes" />
259 </Component>
260
261 <Component Id="cp_QuickLaunchVBox" Guid="CC19E026-938A-41CB-8E77-3F33296244B6" Win64="$(var.Property_Win64)">
262 <CreateFolder/>
263 <Condition>VBOX_INSTALLQUICKLAUNCHSHORTCUT</Condition>
264 <Shortcut Id="sc_QuickLaunchVBox" Directory="dir_QuicklaunchFolder" Name="$(env.VBOX_PRODUCT)" Description="$(env.VBOX_PRODUCT)"
265 Target="[INSTALLDIR]VirtualBox.exe" WorkingDirectory="INSTALLDIR"/>
266 <RegistryValue Root="HKCU" Key="$(var.Property_RegKeyInstall)"
267 Type="string" Value="installed" KeyPath="yes" />
268 </Component>
269
270 </Directory>
271 </Directory>
272 </Directory> <!-- TARGETDIR -->
273
274 <!-- Note: Feature IDs *must not* be renamed to use any prefixes or such,
275 otherwise this will break manual selection using the ADDLOCAL= syntax
276 when using the command line / scripts (see VBox manual). -->
277 <Feature Id="VBoxApplication" Title="VirtualBox Application" Level="1"
278 Description="!(loc.VB_App)"
279 ConfigurableDirectory="INSTALLDIR" TypicalDefault="install" Display="expand"
280 Absent="disallow" AllowAdvertise="no" >
281 <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
282 <MergeRef Id="msm_VBoxApp" />
283<?else ?>
284 <ComponentRef Id="cp_StartMenuVBox" />
285 <ComponentRef Id="cp_DesktopShortcut" />
286 <ComponentRef Id="cp_QuickLaunchVBox" />
287 <ComponentRef Id="cp_RegisterExtensions" />
288
289 <?if $(env.VBOX_WITH_DOCS_PACKING) = "yes" ?>
290 <ComponentRef Id="cp_Docs" />
291 <?endif ?>
292 <ComponentRef Id="cp_NLS" />
293 <?if $(env.VBOX_WITH_32_ON_64_MAIN_API) = "yes" ?>
294 <ComponentRef Id="cp_MainCOM_x86" />
295 <?endif ?>
296 <ComponentRef Id="cp_MainCOM" />
297 <ComponentRef Id="cp_MainBinaries" />
298 <?if $(env.VBOX_WITH_QTGUI) = "yes" ?>
299 <ComponentRef Id="cp_QtAccessible" />
300 <?endif ?>
301 <?if $(env.VBOX_WITH_PYTHON) = "yes" ?>
302 <ComponentRef Id="cp_VBoxPyInst" />
303 <ComponentRef Id="cp_VBoxPyMod" />
304 <?endif ?>
305
306 <?if $(env.VBOX_WITH_CROGL) = "yes" ?>
307 <ComponentRef Id="cp_VBoxCROpenGL" />
308 <?endif ?>
309 <ComponentRef Id="cp_VBoxSDLBinaries" />
310 <?if $(env.VBOX_WITH_WEBSERVICES) = "yes" ?>
311 <ComponentRef Id="cp_VBoxWebService" />
312 <?endif ?>
313 <ComponentRef Id="cp_VBoxDrv" />
314 <?endif ?>
315
316 <Feature Id="VBoxUSB" Title="VirtualBox USB Support" Level="1"
317 Description="!(loc.VB_USBDriver)"
318 ConfigurableDirectory="INSTALLDIR" TypicalDefault="install" Display="expand"
319 Absent="allow" AllowAdvertise="no" >
320<?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
321 <MergeRef Id="msm_VBoxUSB" />
322<?else ?>
323 <ComponentRef Id="cp_USBFilterDriver" />
324 <ComponentRef Id="cp_USBDeviceDriver" />
325<?endif ?>
326 </Feature>
327
328<?if $(env.VBOX_WITH_NETFLT) = "yes" ?>
329 <Feature Id="VBoxNetwork" Title="VirtualBox Networking" Level="1"
330 Description="!(loc.VB_Network)"
331 ConfigurableDirectory="INSTALLDIR" TypicalDefault="install" Display="expand"
332 Absent="allow" AllowAdvertise="no" >
333 <Feature Id="VBoxNetworkFlt" Title="VirtualBox Bridged Networking" Level="1"
334 Description="!(loc.VB_NetFltDriver)"
335 ConfigurableDirectory="INSTALLDIR" TypicalDefault="install" Display="expand"
336 Absent="allow" AllowAdvertise="no" >
337 <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
338 <MergeRef Id="msm_VBoxNetworkFlt" />
339 <?else ?>
340 <ComponentRef Id="cp_NetFltDriver" />
341 <?endif ?>
342 </Feature>
343 <Feature Id="VBoxNetworkAdp" Title="VirtualBox Host-Only Networking" Level="1"
344 Description="!(loc.VB_NetAdpDriver)"
345 ConfigurableDirectory="INSTALLDIR" TypicalDefault="install" Display="expand"
346 Absent="allow" AllowAdvertise="no" >
347 <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
348 <MergeRef Id="msm_VBoxNetworkAdp" />
349 <?else ?>
350 <ComponentRef Id="cp_NetAdpDriver" />
351 <?endif ?>
352 </Feature>
353 </Feature>
354<?endif ?>
355
356<?if $(env.VBOX_WITH_PYTHON) = "yes" ?>
357 <Feature Id="VBoxPython" Title="VirtualBox Python 2.x Support" Level="1"
358 Description="!(loc.VB_Python)"
359 ConfigurableDirectory="INSTALLDIR" TypicalDefault="install" Display="expand"
360 Absent="allow" AllowAdvertise="no" >
361 <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
362 <MergeRef Id="msm_VBoxPython" />
363 <?else ?>
364 <ComponentRef Id="cp_VBoxPythonBinding" />
365 <?endif ?>
366 </Feature>
367<?endif ?>
368 </Feature>
369
370 <!-- Include user interface definition -->
371 <?include UserInterface.wxi ?>
372
373 <InstallExecuteSequence>
374
375 <!--
376 To debug the action sequences, do: "msiexec /i <VBox.msi> /lar <Logfile>"
377
378 InstallUISequence (client side) is:
379 AppSearch
380 LaunchConditions
381 ValidateProductID
382 CostInitialize
383 FileCost
384 CostFinalize
385 ExecuteAction -> will pass control over to "InstallExecuteSequence"
386
387 The first six actions above will be repeated but skipped on the server
388 side if already run on the client side.
389
390 InstallExecuteSequence (server side) is:
391 <First six action from InstallUISequence>
392 .
393 InstallInitialize
394 .
395 InstallFinalize
396
397 The actions between InstallInitialize and InstallFinalize will be gone through twice:
398 - The first time the installer creates an installation script containing all actions in the right
399 sequence which need to get executed in a batch later. At this point the launch conditions for
400 custom actions must be met already!
401 - The second time the generated installation script will be run as-is.
402
403 Also, the InstallUISequence and InstallExecuteSequence tables run in different sessions which
404 need public properties (that is, UPPERCASE properties).
405 -->
406
407 <!-- AppSearch must be done before "RemoveExistingProducts" and before "FindRelatedProducts" -->
408 <AppSearch Sequence="1"></AppSearch>
409 <LaunchConditions Sequence="2" />
410
411 <!-- First install the new version and then remove the old version. This is more efficient -->
412 <RemoveExistingProducts Sequence="3" />
413 <InstallValidate Sequence="4" />
414
415 <Custom Action="ca_OriginalTargetDir" After="FileCost"><![CDATA[(NOT INSTALLDIR) AND (NOT EXISTINGINSTALLDIR)]]></Custom>
416 <Custom Action="ca_DefaultTargetDir" Before="FileCost" ><![CDATA[NOT Installed AND (NOT INSTALLDIR) AND EXISTINGINSTALLDIR]]></Custom>
417
418 <Custom Action="ca_UninstallTAPInstances" Before="InstallFiles" >1</Custom>
419
420 <Custom Action="ca_InstallBrandingArgs" Before="ca_InstallBranding" ><![CDATA[NOT REMOVE]]></Custom>
421 <Custom Action="ca_InstallBranding" Before="InstallFinalize" ><![CDATA[NOT REMOVE]]></Custom>
422
423 <!-- Uninstall branding on complete uninstall, not on update -->
424 <Custom Action="ca_UninstallBrandingArgs" Before="ca_UninstallBranding" ><![CDATA[(NOT UPGRADINGPRODUCTCODE) AND (REMOVE="ALL")]]></Custom>
425 <Custom Action="ca_UninstallBranding" Before="InstallFinalize" ><![CDATA[(NOT UPGRADINGPRODUCTCODE) AND (REMOVE="ALL")]]></Custom>
426
427<?if $(env.VBOX_WITH_MSM_INSTALL) = "no" ?>
428 <?include VBoxMergeAppSeq.wxi ?>
429 <?include VBoxMergeNetFltSeq.wxi ?>
430 <?include VBoxMergePythonSeq.wxi ?>
431<?endif ?>
432
433 </InstallExecuteSequence>
434
435 </Product>
436</Wix>
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette