Changeset 58565 in vbox for trunk/src/VBox/Installer/win
- Timestamp:
- Nov 4, 2015 2:02:02 PM (9 years ago)
- Location:
- trunk/src/VBox/Installer/win
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/UserInterface.wxi
r58558 r58565 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" Default="no">396 Property="VBOX_INSTALLDESKTOPSHORTCUT" 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="VBOX INSTALLQUICKLAUNCHSHORTCUT" CheckBoxValue="1" Default="no">400 Property="VBOX_INSTALLQUICKLAUNCHSHORTCUT" 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="VBOX REGISTERFILEEXTENSIONS" CheckBoxValue="1" Default="no">404 Property="VBOX_REGISTERFILEEXTENSIONS" CheckBoxValue="1" Default="no"> 405 405 <Text>!(loc.Customize2Dlg_RegisterFileExtensions)</Text> 406 406 </Control> -
trunk/src/VBox/Installer/win/VirtualBox.wxs
r58559 r58565 76 76 77 77 <!-- Whether or not a desktop shortcut should be created. --> 78 <Property Id="VBOX INSTALLDESKTOPSHORTCUT" Value="1" Secure="yes"/>79 <SetProperty Id="VBOX INSTALLDESKTOPSHORTCUT" After="AppSearch" Sequence="both"80 Value="{}"><![CDATA[VBOX INSTALLDESKTOPSHORTCUT="0"]]></SetProperty>78 <Property Id="VBOX_INSTALLDESKTOPSHORTCUT" Value="1" Secure="yes"/> 79 <SetProperty Id="VBOX_INSTALLDESKTOPSHORTCUT" After="AppSearch" Sequence="both" 80 Value="{}"><![CDATA[VBOX_INSTALLDESKTOPSHORTCUT="0"]]></SetProperty> 81 81 82 82 <!-- Whether or not a desktop shortcut for the Quick Launch Bar should be created --> 83 <Property Id="VBOX INSTALLQUICKLAUNCHSHORTCUT" Value="1" Secure="yes"/>84 <SetProperty Id="VBOX INSTALLQUICKLAUNCHSHORTCUT" After="AppSearch" Sequence="both"85 Value="{}"><![CDATA[VBOX INSTALLQUICKLAUNCHSHORTCUT="0"]]></SetProperty>83 <Property Id="VBOX_INSTALLQUICKLAUNCHSHORTCUT" Value="1" Secure="yes"/> 84 <SetProperty Id="VBOX_INSTALLQUICKLAUNCHSHORTCUT" After="AppSearch" Sequence="both" 85 Value="{}"><![CDATA[VBOX_INSTALLQUICKLAUNCHSHORTCUT="0"]]></SetProperty> 86 86 87 87 <!-- Whether or not registering of known desktop shortcut for the Quick Launch Bar should be created --> 88 <Property Id="VBOX REGISTERFILEEXTENSIONS" Value="1" Secure="yes"/>89 <SetProperty Id="VBOX REGISTERFILEEXTENSIONS" After="AppSearch" Sequence="both"90 Value="{}"><![CDATA[VBOX REGISTERFILEEXTENSIONS="0"]]></SetProperty>88 <Property Id="VBOX_REGISTERFILEEXTENSIONS" Value="1" Secure="yes"/> 89 <SetProperty Id="VBOX_REGISTERFILEEXTENSIONS" After="AppSearch" Sequence="both" 90 Value="{}"><![CDATA[VBOX_REGISTERFILEEXTENSIONS="0"]]></SetProperty> 91 91 92 92 <!-- Whether or not VirtualBox should be started automatically right after successful installation --> 93 <Property Id="VBOX START" Value="1" Secure="yes"/>94 <SetProperty Id="VBOX START" After="AppSearch" Sequence="both"95 Value="{}"><![CDATA[VBOX START="0"]]></SetProperty>93 <Property Id="VBOX_START" Value="1" Secure="yes"/> 94 <SetProperty Id="VBOX_START" After="AppSearch" Sequence="both" 95 Value="{}"><![CDATA[VBOX_START="0"]]></SetProperty> 96 96 97 97 <!-- Make sure installation will not start on anything other but the NT family -->
Note:
See TracChangeset
for help on using the changeset viewer.