Article ID: 133338
Article Last Modified on 11/1/2006
ProtoData_4 = "OEMNXPDL.INF","DLC",4,dlc
The ProtoData_4 line must immediately follow the ProtoData_3 line.
ForListDo $(ProtoInfList)
Set AddIt = 0
ifstr *($(ProtoOptionList),$(#)) == "NBF"
ifint $(!InstallNetBEUI) == 1
Set AddIt = 1
endif
else-ifstr *($(ProtoOptionList),$(#)) == "TC"
ifint $(!InstallTCPIP) == 1
Set AddIt = 1
endif
else-ifstr *($(ProtoOptionList),$(#)) == "NWLNKIPX"
ifint $(!InstallNWLink) == 1
Set AddIt = 1
endif
and add the following three lines:
else-ifstr *($(ProtoOptionList),$(#)) == "DLC"
Set AddIt = 1
endif
The new for loop should read as follows:
ForListDo $(ProtoInfList)
Set AddIt = 0
ifstr *($(ProtoOptionList),$(#)) == "NBF"
ifint $(!InstallNetBEUI) == 1
Set AddIt = 1
endif
else-ifstr *($(ProtoOptionList),$(#)) == "TC"
ifint $(!InstallTCPIP) == 1
Set AddIt = 1
endif
else-ifstr *($(ProtoOptionList),$(#)) == "NWLNKIPX"
ifint $(!InstallNWLink) == 1
Set AddIt = 1
endif
else-ifstr *($(ProtoOptionList),$(#)) == "DLC"
Set AddIt = 1
endif
Additional query words: prodnt
Keywords: KB133338