Changeset 58721 in vbox for trunk/src/VBox/Installer/win/VBoxMergeNetLwf.wxs
- Timestamp:
- Nov 17, 2015 2:13:20 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/VBoxMergeNetLwf.wxs
r58599 r58721 34 34 SummaryCodepage="1252"/> 35 35 36 36 37 <?include PublicProperties.wxi ?> 38 39 <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?> 40 <Property Id="localMSMNetworkType" Value="NDIS6" /> 41 <Configuration Name="passedNetworkType" Format="Text" DefaultValue="Not passed"/> 42 <Substitution Table="CustomAction" Row="setNetworkTypeLWF" Column="Target" Value="[=passedNetworkType]"/> 43 <CustomAction Id="setNetworkTypeLWF" Property="localMSMNetworkType" Value="[localMSMNetworkType]" Execute="immediate" /> 44 <CustomAction Id="correctNetworkTypeLWF" Property="localMSMNetworkType" Value="NDIS5" Execute="immediate" /> 45 <?endif ?> 37 46 38 47 <!-- Here comes the file/directory list --> … … 50 59 51 60 <InstallExecuteSequence> 61 <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?> 62 <Custom Action="setNetworkTypeLWF" After="CostInitialize"/> 63 <Custom Action="correctNetworkTypeLWF" After="setNetworkTypeLWF"> 64 <![CDATA[(VersionNT < 600)]]> 65 </Custom> 66 <?endif ?> 52 67 <?include VBoxMergeNetLwfSeq.wxi ?> 53 68 </InstallExecuteSequence>
Note:
See TracChangeset
for help on using the changeset viewer.