Changeset 58554 in vbox
- Timestamp:
- Nov 3, 2015 5:33:28 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103894
- Location:
- trunk/src/VBox/Installer/win
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/UserInterface.wxi
r56299 r58554 394 394 Also see: http://osdir.com/ml/windows.devel.wix.user/2005-02/msg00300.html --> 395 395 <Control Id="DesktopShortcutCheckBox" Type="CheckBox" X="25" Y="95" Width="200" Height="17" 396 Property="VBOX _INSTALLDESKTOPSHORTCUT" CheckBoxValue="1">396 Property="VBOXINSTALLDESKTOPSHORTCUT" CheckBoxValue="1"> 397 397 <Text>!(loc.Customize2Dlg_CreateShortcut)</Text> 398 398 </Control> 399 399 <Control Id="QuicklaunchShortcutCheckBox" Type="CheckBox" X="25" Y="115" Width="200" Height="17" 400 Property="VBOX _INSTALLQUICKLAUNCHSHORTCUT" CheckBoxValue="1">400 Property="VBOXINSTALLQUICKLAUNCHSHORTCUT" CheckBoxValue="1"> 401 401 <Text>!(loc.Customize2Dlg_CreateQuickLaunch)</Text> 402 402 </Control> 403 403 <Control Id="RegisterFileExtensionsCheckBox" Type="CheckBox" X="25" Y="135" Width="200" Height="17" 404 Property="VBOX _REGISTERFILEEXTENSIONS" CheckBoxValue="1">404 Property="VBOXREGISTERFILEEXTENSIONS" CheckBoxValue="1"> 405 405 <Text>!(loc.Customize2Dlg_RegisterFileExtensions)</Text> 406 406 </Control> … … 586 586 <Dialog Id="VBoxExitDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes"> 587 587 <Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.ButtonText_Finish)"> 588 <Publish Event="DoAction" Value="ca_StartVBox"><![CDATA[VBOX _STARTVBOX]]></Publish>588 <Publish Event="DoAction" Value="ca_StartVBox"><![CDATA[VBOXSTART]]></Publish> 589 589 <Publish Event="EndDialog" Value="Return">1</Publish> 590 590 </Control> … … 610 610 Also see: http://osdir.com/ml/windows.devel.wix.user/2005-02/msg00300.html --> 611 611 <Control Id="StartVBoxCheckBox" Type="CheckBox" X="135" Y="115" Width="200" Height="17" 612 Property="VBOX _STARTVBOX" CheckBoxValue="1">612 Property="VBOXSTART" CheckBoxValue="1"> 613 613 <Text>!(loc.ExitDlg_StartVBox)</Text> 614 614 <Condition Action="hide"> -
trunk/src/VBox/Installer/win/VirtualBox.wxs
r56725 r58554 74 74 75 75 <!-- VirtualBox properties --> 76 <Property Id="VBOX _INSTALLDESKTOPSHORTCUT" Value="1" />77 <Property Id="VBOX _INSTALLQUICKLAUNCHSHORTCUT" Value="1" />78 <Property Id="VBOX _REGISTERFILEEXTENSIONS" Value="1" />79 <Property Id="VBOX _STARTVBOX" Value="1" />76 <Property Id="VBOXINSTALLDESKTOPSHORTCUT" Value="1" /> 77 <Property Id="VBOXINSTALLQUICKLAUNCHSHORTCUT" Value="1" /> 78 <Property Id="VBOXREGISTERFILEEXTENSIONS" Value="1" /> 79 <Property Id="VBOXSTART" Value="1" /> 80 80 81 81 <!-- Make sure installation will not start on anything other but the NT family --> … … 108 108 </Condition> 109 109 110 110 111 111 <!-- *************************** Upgrade packages only ******************************* --> 112 112 <!-- Minimum and Maximum specify the range of versions we are supposed to update with this upgrade. … … 170 170 </DirectorySearch> 171 171 </Property> 172 172 173 173 <!-- 174 174 install upgrade uninstall … … 179 179 --> 180 180 181 <Condition Message="It was detected an application which has been using currently installed VirtualBox version. 182 You must remove this application before continuing installation. 181 <Condition Message="It was detected an application which has been using currently installed VirtualBox version. 182 You must remove this application before continuing installation. 183 183 See the file dependency.dep in the VirtualBox installation directory for details. "> 184 184 NOT (VBOXDEPENDENCY AND UPGRADINGPRODUCTCODE) 185 185 </Condition> 186 186 187 187 <!-- Detect old Sun installation --> 188 188 <!-- Force a manual uninstall of an already installed Sun VirtualBox version first --> … … 331 331 332 332 <Component Id="cp_DesktopShortcut" Guid="668F8A1A-F5CE-48B3-BB1A-3042EE27B279" Win64="$(var.Property_Win64)"> 333 <Condition>VBOX _INSTALLDESKTOPSHORTCUT</Condition>333 <Condition>VBOXINSTALLDESKTOPSHORTCUT</Condition> 334 334 <Shortcut Id="sc_DesktopVBox" Directory="DesktopFolder" Name="$(env.VBOX_PRODUCT)" Description="$(env.VBOX_PRODUCT)" 335 335 Target="[INSTALLDIR]VirtualBox.exe" WorkingDirectory="INSTALLDIR"/> … … 340 340 <Component Id="cp_QuickLaunchVBox" Guid="CC19E026-938A-41CB-8E77-3F33296244B6" Win64="$(var.Property_Win64)"> 341 341 <CreateFolder/> 342 <Condition>VBOX _INSTALLQUICKLAUNCHSHORTCUT</Condition>342 <Condition>VBOXINSTALLQUICKLAUNCHSHORTCUT</Condition> 343 343 <Shortcut Id="sc_QuickLaunchVBox" Directory="dir_QuicklaunchFolder" Name="$(env.VBOX_PRODUCT)" Description="$(env.VBOX_PRODUCT)" 344 344 Target="[INSTALLDIR]VirtualBox.exe" WorkingDirectory="INSTALLDIR"/> … … 439 439 <MergeRef Id="msm_VBoxNetworkAdp" /> 440 440 <MergeRef Id="msm_VBoxNetworkAdp6" /> 441 <MergeRef Id="msm_VBoxNetworkLwf" /> 441 <MergeRef Id="msm_VBoxNetworkLwf" /> 442 442 <?else ?> 443 443 <ComponentRef Id="cp_NetAdpDriver" /> 444 444 <ComponentRef Id="cp_NetAdp6Driver" /> 445 <ComponentRef Id="cp_NetLwfDriver" /> 445 <ComponentRef Id="cp_NetLwfDriver" /> 446 446 <?endif ?> 447 447 </Feature>
Note:
See TracChangeset
for help on using the changeset viewer.