Changeset 58558 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Nov 4, 2015 12:26:59 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103904
- Location:
- trunk/src/VBox/Installer/win
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/UserInterface.wxi
r58554 r58558 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="VBOXINSTALLDESKTOPSHORTCUT" CheckBoxValue="1">396 Property="VBOXINSTALLDESKTOPSHORTCUT" CheckBoxValue="1" Default="no"> 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="VBOXINSTALLQUICKLAUNCHSHORTCUT" CheckBoxValue="1" >400 Property="VBOXINSTALLQUICKLAUNCHSHORTCUT" CheckBoxValue="1" Default="no"> 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="VBOXREGISTERFILEEXTENSIONS" CheckBoxValue="1" >404 Property="VBOXREGISTERFILEEXTENSIONS" CheckBoxValue="1" Default="no"> 405 405 <Text>!(loc.Customize2Dlg_RegisterFileExtensions)</Text> 406 406 </Control> -
trunk/src/VBox/Installer/win/VirtualBox.wxs
r58554 r58558 73 73 <Property Id='REINSTALLMODE' Value='amus'/> 74 74 75 <!-- VirtualBox properties --> 75 <!-- VirtualBox properties (can be modified from command line) --> 76 77 <!-- Whether or not a desktop shortcut should be created. --> 76 78 <Property Id="VBOXINSTALLDESKTOPSHORTCUT" Value="1" /> 79 <SetProperty Id="VBOXINSTALLDESKTOPSHORTCUT" After="AppSearch" Sequence="both" 80 Value="{}"><![CDATA[VBOXINSTALLDESKTOPSHORTCUT="0"]]></SetProperty> 81 82 <!-- Whether or not a desktop shortcut for the Quick Launch Bar should be created --> 77 83 <Property Id="VBOXINSTALLQUICKLAUNCHSHORTCUT" Value="1" /> 84 <SetProperty Id="VBOXINSTALLQUICKLAUNCHSHORTCUT" After="AppSearch" Sequence="both" 85 Value="{}"><![CDATA[VBOXINSTALLQUICKLAUNCHSHORTCUT="0"]]></SetProperty> 86 87 <!-- Whether or not registering of known desktop shortcut for the Quick Launch Bar should be created --> 78 88 <Property Id="VBOXREGISTERFILEEXTENSIONS" Value="1" /> 89 <SetProperty Id="VBOXREGISTERFILEEXTENSIONS" After="AppSearch" Sequence="both" 90 Value="{}"><![CDATA[VBOXREGISTERFILEEXTENSIONS="0"]]></SetProperty> 91 92 <!-- Whether or not VirtualBox should be started automatically right after successful installation --> 79 93 <Property Id="VBOXSTART" Value="1" /> 94 <SetProperty Id="VBOXSTART" After="AppSearch" Sequence="both" 95 Value="{}"><![CDATA[VBOXSTART="0"]]></SetProperty> 80 96 81 97 <!-- Make sure installation will not start on anything other but the NT family -->
Note:
See TracChangeset
for help on using the changeset viewer.