Changeset 58596 in vbox for trunk/src/VBox/Installer/win/Properties.wxi
- Timestamp:
- Nov 6, 2015 11:11:27 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103958
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/Properties.wxi
r56299 r58596 58 58 <?endif ?> 59 59 60 <!-- Define our own public properties here in order to get those also recognized in case 61 case we're building the installer as MSM modules --> 62 63 <!-- Default property for network adapter type --> 64 <Property Id="NETWORKTYPE" Value="NDIS6" Secure="yes"/> 65 66 <!-- Force NDIS5 on pre-Vista --> 67 <SetProperty Id="NETWORKTYPE" After="CostFinalize" Value="NDIS5"><![CDATA[(NETWORKTYPE="NDIS6") AND (VersionNT < 600)]]></SetProperty> 68 69 <!-- Whether or not a desktop shortcut should be created. --> 70 <Property Id="VBOX_INSTALLDESKTOPSHORTCUT" Value="1" Secure="yes"/> 71 <SetProperty Id="VBOX_INSTALLDESKTOPSHORTCUT" After="AppSearch" Sequence="both" 72 Value="{}"><![CDATA[VBOX_INSTALLDESKTOPSHORTCUT="0"]]></SetProperty> 73 74 <!-- Whether or not a desktop shortcut for the Quick Launch Bar should be created --> 75 <Property Id="VBOX_INSTALLQUICKLAUNCHSHORTCUT" Value="1" Secure="yes"/> 76 <SetProperty Id="VBOX_INSTALLQUICKLAUNCHSHORTCUT" After="AppSearch" Sequence="both" 77 Value="{}"><![CDATA[VBOX_INSTALLQUICKLAUNCHSHORTCUT="0"]]></SetProperty> 78 79 <!-- Whether or not registering of known desktop shortcut for the Quick Launch Bar should be created --> 80 <Property Id="VBOX_REGISTERFILEEXTENSIONS" Value="1" Secure="yes"/> 81 <SetProperty Id="VBOX_REGISTERFILEEXTENSIONS" After="AppSearch" Sequence="both" 82 Value="{}"><![CDATA[VBOX_REGISTERFILEEXTENSIONS="0"]]></SetProperty> 83 84 <!-- Whether or not VirtualBox should be started automatically right after successful installation --> 85 <Property Id="VBOX_START" Value="1" Secure="yes"/> 86 <SetProperty Id="VBOX_START" After="AppSearch" Sequence="both" 87 Value="{}"><![CDATA[VBOX_START="0"]]></SetProperty> 88 60 89 </Include>
Note:
See TracChangeset
for help on using the changeset viewer.