Changeset 53156 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Oct 27, 2014 5:01:44 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 96692
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/VirtualBox.wxs
r53141 r53156 63 63 64 64 <!-- Default property for network adapter type --> 65 <Property Id="NETWORKTYPE" Secure="yes"/> 66 <!-- Use NDIS6 on Vista and later --> 67 <SetProperty Action="SET_NETWORKTYPE_PRE_VISTA" Id="NETWORKTYPE" After="CostFinalize" Value="NDIS5"><![CDATA[NETWORKTYPE = "" AND VersionNT < 600]]></SetProperty> 68 <SetProperty Action="SET_NETWORKTYPE_VISTA_PLUS" Id="NETWORKTYPE" After="CostFinalize" Value="NDIS6"><![CDATA[NETWORKTYPE = "" AND VersionNT >= 600]]></SetProperty> 65 <Property Id="NETWORKTYPE" Value="NDIS6" Secure="yes"/> 66 <!-- Force NDIS5 on pre-Vista --> 67 <SetProperty Id="NETWORKTYPE" After="CostFinalize" Value="NDIS5"><![CDATA[VersionNT < 600]]></SetProperty> 69 68 70 69 <!-- Install the product for all users on the system -->
Note:
See TracChangeset
for help on using the changeset viewer.