VirtualBox

Changeset 58558 in vbox for trunk/src/VBox/Installer


Ignore:
Timestamp:
Nov 4, 2015 12:26:59 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
103904
Message:

Windows host installer: Fixed setting public properties from command line.

Location:
trunk/src/VBox/Installer/win
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Installer/win/UserInterface.wxi

    r58554 r58558  
    394394                 Also see: http://osdir.com/ml/windows.devel.wix.user/2005-02/msg00300.html -->
    395395            <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">
    397397                <Text>!(loc.Customize2Dlg_CreateShortcut)</Text>
    398398            </Control>
    399399            <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">
    401401                <Text>!(loc.Customize2Dlg_CreateQuickLaunch)</Text>
    402402            </Control>
    403403            <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">
    405405                <Text>!(loc.Customize2Dlg_RegisterFileExtensions)</Text>
    406406            </Control>
  • trunk/src/VBox/Installer/win/VirtualBox.wxs

    r58554 r58558  
    7373    <Property Id='REINSTALLMODE' Value='amus'/>
    7474
    75     <!-- VirtualBox properties -->
     75    <!-- VirtualBox properties (can be modified from command line) -->
     76
     77    <!-- Whether or not a desktop shortcut should be created. -->
    7678    <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 -->
    7783    <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 -->
    7888    <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 -->
    7993    <Property Id="VBOXSTART" Value="1" />
     94    <SetProperty Id="VBOXSTART" After="AppSearch" Sequence="both"
     95                 Value="{}"><![CDATA[VBOXSTART="0"]]></SetProperty>
    8096
    8197    <!-- Make sure installation will not start on anything other but the NT family -->
Note: See TracChangeset for help on using the changeset viewer.

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