DLLDOWNLOADSYSTEM

Missing dll error solution

Please read the instructions carefully before you download the dll file.Take the proper steps to safely clean and repair windows errors.

1. Where should this file go? After you download "*.Dll" on your machine, paste it in directory where it missing, and also copy it to

Windows 95, 98, ME C:\Windows\System
Windows NT, 2000 C:\WinNT\System32
Windows XP, Vista, 7, 8 C:\Windows\System32
64-bit Windows C:\Windows\System64

If you can't find windows directory try:
a. Press and hold Windows key on your keyboard, then press button R.
b. Enter the command "cmd" and press Enter
c. In a command window enter the command "set systemroot" and press Enter. It will display system directory.
2. Go to "start" ==> "run" and type "regsvr32 *.Dll" to register the file to the system.

    
inf files

DocumentsDate added

Order by : Name | Date | Hits [ Ascendant ]
file icon NETNBF.INFhot!

; Copyright (c) 1993-1999, Microsoft Corporation

[Version]
Signature�� = "$Windows NT$"
Class������ = NetTrans
ClassGUID�� = {4d36e975-e325-11ce-bfc1-08002be10318}
Provider��� = %Msft%
DriverVer=07/01/2001,5.1.2535.0

[Manufacturer]
%Msft%=MSFT

[MSFT]
%NetBEUI_Desc%=Install, MS_NetBEUI

;-------------------------------------------------------------------------
; Installation Section
;-------------------------------------------------------------------------
[Install]
AddReg=Inst_Ndi
Characteristics=0x00
;CopyFiles=CpyFiles_Sys

;-------------------------------------------------------------------------
; Ndi installation support
;-------------------------------------------------------------------------
[Inst_Ndi]
HKR,"Ndi","ClsID",,"{a28d553a-a703-11d0-9cec-00c04fc9bcc4}"
HKR,"Ndi","Service",,"Nbf"
HKR,"Ndi","CoServices",%REG_MULTI_SZ%,"Nbf"
HKR,"Ndi","HelpText",,"@netcfgx.dll,-50011"
HKR,"Ndi\Interfaces","UpperRange",,"netbios"
HKR,"Ndi\Interfaces","LowerRange",,"ndis5,ndis4,ndiswannbf,ndis5_nbf"

;-------------------------------------------------------------------------
; Service installation support
;-------------------------------------------------------------------------
[Install.Services]
AddService=Nbf,,NetBEUI_Service_Inst

[NetBEUI_Service_Inst]
DisplayName���� = %NetBEUI_Desc%
ServiceType���� = 1 ;SERVICE_KERNEL_DRIVER
StartType������ = 2 ;SERVICE_AUTO_START
ErrorControl��� = 1 ;SERVICE_ERROR_NORMAL
ServiceBinary�� = %12%\nbf.sys
LoadOrderGroup� = "PNP_TDI"
AddReg��������� = AddReg_NetBEUI_Service_Inst
Description���� = %NetBEUI_Desc%

[AddReg_NetBEUI_Service_Inst]
HKR,"Parameters","NbProvider",,"_nb"
HKR,"Performance","Library",,"perfctrs.dll"
HKR,"Performance","Open",,"OpenNbfPerformanceData"
HKR,"Performance","Close",,"CloseNbfPerformanceData"
HKR,"Performance","Collect",,"CollectNbfPerformanceData"

;-------------------------------------------------------------------------
; Support for removal of static registry settings
;-------------------------------------------------------------------------
[Install.Remove]
DelReg=Del_Static_Reg

[Install.Remove.Services]
DelService=Nbf

[Del_Static_Reg]
HKLM,"Software\Microsoft\Rpc\Protocols","ncacn_nb_nb"
HKLM,"Software\Microsoft\Rpc\ClientProtocols","ncacn_nb_nb"
@@:@6:HKLM,"Software\Wow6432Node\Microsoft\Rpc\ClientProtocols","ncacn_nb_nb"

;-------------------------------------------------------------------------
; Declare Destination Directories for file copy/deletion
;-------------------------------------------------------------------------
;[DestinationDirs]
;CpyFiles_Sys��� = 12��� ; DIRID_DRIVERS
;CpyFiles_Inst�� = 11��� ; System32

;-------------------------------------------------------------------------
; Files to Copy/Delete - Referenced by Install and Remove sections above
;-------------------------------------------------------------------------
;[CpyFiles_Sys]
;nbf.sys,,,2

[Strings]
Msft = "Microsoft"
NetBEUI_Desc = "NetBEUI Protocol"

REG_DWORD = 0x10001
REG_MULTI_SZ = 0x10000

file icon NETMAP.INFhot!

; -----------------------------------------------------------------
;
; NETMAP.INF
;
; Maps pre-NT5 InfID of netcards to its NT5 equivalent
; used by netupgrd.dll during upgrade to NT5
;
; Copyright (c) 1993-1997, Microsoft Corporation
;
; -----------------------------------------------------------------

[version]
signature="$Windows NT$"

; -----------------------------------------------------------------
; Structure of netmap.inf file
;
; We use netmap.inf file to map pre-NT5 InfID of a netcard to its
; NT5 InfID (PnPID).
;
; This file has a number of top-level sections.
; Each top-level section holds entries for mapping netcards of a particular
; bus type. the format of each line is
;
; =
; OR
; =,
;
; the former is a 1-1 mapping while the latter offers a way to map a single
; preNT5 InfID to multiple InfIDs
;
; Known issues:
; -------------
; - Any of the sections must not be empty. this is a limitation of NT SetupAPI.
; - the new InfID must not begin with a number
;�� e.g. we cannot have a mapping such as the following
;������� Old3ComId = 3ComNewId� ; error --> begins with 3 (a number)
;
;� Mapping method 0
;� ----------------
;� This method is used when a single pre-NT5 InfID represents more than one
;� net card which means that a single pre-NT5 InfID is mapped onto many
;� NT5 PnPIDs. The only way to differentiate between the different types of
;� net cards is to inspect a single value under the parameters key.
;
;� In this mapping method, two keys are required to be specified for
;� each net card.
;� - ValueName: this specifies the value to be inspected under the Parameters key
;� - ValueType: this specifies the type of ValueName
;
;� there can be any number of additional keys in this section.
;� each such line is of the form
;� =
;
;� we first find out the value of ValueName
;� then we enumerate each key in this section to see if the value matches the
;� value of any of the keys.
;� if we find a match, then the name of the found key represents
;
;� e.g.
;� 5 flavors of the ELNK3MCA card are represented by the same InfID in NT4
;� the only way to distinguish between them is to inspect the McaPosId value
;� for this card we have the mapping section defined as follows:
;
;� [McaAdapters]
;� ELNK3MCA��� = 0,ELNK3MCA�� ; 0 --> mapping method 0
;� ... other mca card entries ...
;
;� [ELNK3MCA]
;� ValueName= McaPosId
;� ValueType= 4������������ ; REG_DWORD
;� mca_627c = 0x0000627c��� ; if value of McaPosId is 0x627c then PnPID == mca_627c
;� mca_627d = 0x0000627d
;� mca_61db = 0x000061db
;� mca_62f6 = 0x000062f6
;� mca_62f7 = 0x000062f7
;

; -----------------------------------------------------------------
; PCI cards
;
[PciAdapters]
3COM���������� = PCI\VEN_10b7&DEV_9200 ;3Com EtherLink XL 10/100 PCI For Complete PC Management
3C900��������� = PCI\VEN_10b7&DEV_9000 ;3Com EtherLink XL PCI 10Mb Adapter (3C900)
3C905��������� = PCI\VEN_10b7&DEV_9055 ;3Com Fast EtherLink XL PCI 10/100Mb Adapter (3C905)
3C905B�������� = PCI\VEN_10b7&DEV_9055
3C905C�������� = PCI\VEN_10b7&DEV_9200
3C90x��������� = PCI\VEN_10b7&DEV_9050 ;3Com Fast EtherLink XL PCI 10/100Mb Adapter (3C905)
3C980������� = PCI\VEN_10B7&DEV_9800 ;3Com Fast EtherLink XL Server (3C980)
A2560��������� = PCI\VEN_8086&DEV_1229 ;Intel 8255x-based PCI Ethernet Adapter (10/100)
A2560PCI������ = PCI\VEN_1266&DEV_0001 ;ATI AT-2560 Series PCI/100 Ethernet Adapter (82557B)
ACC07D������� = PCI\VEN_1113&DEV_9211 ;Accton EN1207D-TX Fast Ethernet PCI Adapter
ALN315������� = PCI\VEN_1011&DEV_0019 ;AcerLAN ALN-315 10/100Base-TX Fast Ethernet Adapter
ALN325������� = PCI\VEN_10EC&DEV_8139 ;AcerLAN ALN-325 10/100 Base-TX Fast Ethernet Adapter
ALTEON������� = PCI\VEN_12AE&DEV_0001 ;Alteon Networks ACEnic PCI Gigabit Ethernet Adapter
AMB����������� = PCI\VEN_1011&DEV_0019 ;AmbiCom 10/100 Ethernet CardBus PC Card (AMB8100)
AMDPCI�������� = PCI\VEN_1022&DEV_2000 ;AMD PCNET Family Ethernet Adapter
ANA62011TX���� = PCI\VEN_9004&DEV_6915 ;Single 10/100 Mb/s UTP Port
ANA62022������ = PCI\VEN_9004&DEV_6915 ;Adaptec ANA62022 64-bit 2 port PCI 10/100 Mb/s UTP Port
ANA62044������ = PCI\VEN_9004&DEV_6915 ;Adaptec ANA62044 64-bit 4 port PCI 10/100 Mb/s UTP Port
ANA69011TX���� = PCI\VEN_9004&DEV_6915 ;Single 10/100 Mb/s UTP Port
AT2450�������� = PCI\VEN_1022&DEV_2000 ;AMD PCNET PCI
AT2500�������� = PCI\VEN_10EC&DEV_8139 ;ATI AT-2500TX PCI Fast Ethernet Adapter
C20������������ = PCI\VEN_115D&DEV_0003&SUBSYS_01811179������������������ ;Toshiba 10+100 CardBus Ethernet PC Card
CBE������������ = PCI\VEN_1011&DEV_0019������������������ ;Xircom CardBus Ethernet 10/100
CBE������������ = PCI\VEN_115D&DEV_0003&SUBSYS_0181115D������������������ ;Xircom CardBus Ethernet II 10/100
CBE������������ = PCI\VEN_115D&DEV_0003&SUBSYS_1181115D������������������ ;Xircom CardBus Ethernet 100 + Modem 56
CBENT���������� = PCI\VEN_1011&DEV_0019������������������ ;Xircom CardBus Ethernet 10/100
CBENT���������� = PCI\VEN_115D&DEV_0003&SUBSYS_0181115D������������������ ;Xircom CardBus Ethernet II 10/100
CBENT���������� = PCI\VEN_115D&DEV_0003&SUBSYS_1181115D������������������ ;Xircom CardBus Ethernet 100 + Modem 56
CPQNF3�������� = PCI\VEN_0E11&DEV_AE43 ;Compaq Integrated NetFlex-3 10 T UTP Module Network Adapter
CPQPCI�������� = PCI\VEN_8086&DEV_1229 ;Intel 8255x-based PCI Ethernet Adapter (10/100)
CPQPCI2������� = PCI\VEN_10B6&DEV_0003 ;Compaq NC4621 PCI 4/16 WOL
CPX21140������ = PCI\VEN_1011&DEV_0009 ;Compex FreedomLINE PCI Fast Ethernet Adapter
DC21040������� = PCI\VEN_1011&DEV_0002 ;DEC PCI Ethernet DECchip 21040
DC21041������� = PCI\VEN_1011&DEV_0014 ;DEC PCI Ethernet DECchip 21041
DC21140������� = PCI\VEN_1011&DEV_0009 ;DEC PCI Ethernet DECchip 21140
DC21141������� = PCI\VEN_1011&DEV_0014 ;DEC PCI Fast Ethernet DECchip 21141
DC21142������� = PCI\VEN_1011&DEV_0019 ;DEC PCI Fast Ethernet DECchip 21142
DC21143������� = PCI\VEN_1011&DEV_0019 ;DEC PCI Fast Ethernet DECchip 21143
DE434��������� = PCI\VEN_1011&DEV_0002 ;DEC DE434 EtherWORKS Turbo PCI TP Adapter
DE435��������� = PCI\VEN_1011&DEV_0002 ;DEC DE435 EtherWORKS Turbo PCI Adapter
DE450��������� = PCI\VEN_1011&DEV_0014 ;DEC DE450 EtherWORKS Turbo PCI Adapter
DE500��������� = PCI\VEN_1011&DEV_0009 ;DEC DE500 Fast Ethernet PCI Adapter
DE528������� = PCI\VEN_10EC&DEV_8029 ;D-Link DE-528 Ethernet PCI Adapter
DEFPA��������� = PCI\VEN_1011&DEV_000F ;DEC FDDIcontroller/PCI
E1000��������� = PCI\VEN_8086&DEV_1000 ;Intel(R) PRO/1000 Gigabit Server Adapter
E100B��������� = PCI\VEN_8086&DEV_1229 ;Intel 8255x-based PCI Ethernet Adapter (10/100)
E100BEXP������ = PCI\VEN_8086&DEV_1229 ;Intel 82557-based 10/100 Ethernet PCI Adapter or compatible
E100BPCI������ = PCI\VEN_8086&DEV_1229 ;Intel 82557-based PRO Adapter
E100BRWA������ = PCI\VEN_8086&DEV_1229 ;Intel 8255x-based PCI Ethernet Adapter (10/100)
E100pci������� = PCI\VEN_8086&DEV_1227 ;PRO/100 PCI
E100server���� = PCI\VEN_8086&DEV_5201 ;Intel(R) PRO/100 Intelligent Server Adapter
E100snt������� = PCI\VEN_8086&DEV_1228 ;PRO/100 SMART
E10PCI�������� = PCI\VEN_8086&DEV_1226 ;Intel EtherExpress PRO/10 PCI LAN Adapter
E10PPCI������� = PCI\VEN_8086&DEV_1229 ;Intel EtherExpress 10+ PCI
E10p���������� = PCI\VEN_8086&DEV_1226 ;PRO/10 PCI
ELPC575������� = PCI\VEN_10B7&DEV_5057 ;3Com Megahertz 10/100 LAN CardBus PC Card (Ethernet)
ELPC656������� = PCI\VEN_10b7&DEV_6562 ;3Com 10-100 LAN + 56K Modem CardBus PC Card
EN1207������� = PCI\VEN_1011&DEV_0009 ;Accton EN1207-TX
EN1207D������� = PCI\VEN_1113&DEV_1211 ;HP EN1207D-TX PCI 10/100 Fast Ethernet Adapter
ET32NT������� = PCI\VEN_8E2E&DEV_3000 ;KTI ET32/Px Series PCI Ethernet Adapter
F1100pci������ = PCI\VEN_10C3&DEV_1100 ;Intel 8255x-based PCI Ethernet Adapter (10/100)
FASTMAC������� = PCI\VEN_11F6&DEV_2011 ;Compex RL100ATX/10Base PCI Fast Ethernet Adapter
HPTX���������� = PCI\VEN_8086&DEV_1229 ;Intel 8255x-based PCI Ethernet Adapter (10/100)
HPTXPCI������� = PCI\VEN_8086&DEV_1229 ;Intel 8255x-based PCI Ethernet Adapter (10/100)
I82557�������� = PCI\VEN_8086&DEV_1229 ;Intel 8255x-based PCI Ethernet Adapter (10/100)
IBMC������� = PCI\VEN_115D&DEV_0003 ;IBM 10/100 EtherJet CardBus Adapter
IBMFE��������� = PCI\VEN_8086&DEV_1229 ;Intel 8255x-based PCI Ethernet Adapter (10/100)
IBMFEPCI������ = PCI\VEN_8086&DEV_1229 ;Intel 8255x-based PCI Ethernet Adapter (10/100)
IBMGE��������� = PCI\VEN_8086&DEV_1000 ;IBM Netfinity Gigabit Ethernet SX Adapter
IBMTRP�������� = PCI\VEN_1014&DEV_003E ;IBM PCI Token-Ring Adapter
J2585A�������� = PCI\VEN_103C&DEV_1030 ;HP DeskDirect (J2585A) 10/100 PCI LAN Adapter
J2585B�������� = PCI\VEN_103C&DEV_1031 ;HP DeskDirect (J2585B) 10/100 PCI LAN Adapter
J2970A�������� = PCI\VEN_103C&DEV_1031 ;HP DeskDirect (J2970A) 10BaseT/2 PCI LAN Adapter
J2973A�������� = PCI\VEN_103C&DEV_1031 ;HP DeskDirect (J2973A) 10BaseT PCI LAN Adapter
LNE100TX������ = PCI\VEN_11AD&DEV_0002 ;LinkSys LNE100TX Fast Ethernet Adapter
M32A����������� = PCI\VEN_1011&DEV_0019������������������ ;Intel EtherExpress PRO/100 Mobile
MDGMPPCI������ = PCI\VEN_10B6&DEV_0002 ;Madge Smart 16/4 PCI Ringnode
MDGMPPCIBM���� = PCI\VEN_10B6&DEV_0004 ;Madge Smart 16/4 PCI Ringnode (BM)
MDGPCI3������� = PCI\VEN_10B6&DEV_0003 ;Madge Smart 16/4 PCI Ringnode Mk3
MSMDGMPPCI���� = PCI\VEN_10B6&DEV_0002 ;Madge Smart 16/4 PCI Ringnode
MSMDGMPPCIBM�� = PCI\VEN_10B6&DEV_0004 ;Madge Smart 16/4 PCI Ringnode (BM)
MX98713������� = PCI\VEN_10d9&DEV_0512 ;Macronix MXIC MX98713 10/100 PCI Ethernet Adapter
MX98715������� = PCI\VEN_10d9&DEV_0531 ;Macronix MXIC MX98715 10/100 PCI Ethernet Adapter
N100���������� = PCI\VEN_8086&DEV_1229 ;Intel 8255x-based PCI Ethernet Adapter (10/100)
N1000������� = PCI\VEN_8086&DEV_1000 ;Compaq NC6132 Gigabit Module
NCPF���������� = PCI\VEN_11BC&DEV_0001 ;NPI's PCI FDDI Adapter
NE100��������� = PCI\VEN_8086&DEV_1229 ;Intel 8255x-based PCI Ethernet Adapter (10/100)
NE100PCI������ = PCI\VEN_1266&DEV_0001 ;Microdyne NE10/100 Adapter (82557B)
NIHCRD�������� = PCI\VEN_1011&DEV_0019&SUBSYS_800C1033��� ;NEC PC-9821-CS01/CS01X
NIHPCI�������� = PCI\VEN_1011&DEV_0019&SUBSYS_800C1033��� ;NEC PC-9821-CS01/CS01X
O100pci������� = PCI\VEN_8086&DEV_1227 ;PRO/100 PCI (OLICOM)
OCA1PND3������ = PCI\VEN_108D&DEV_0021 ;Olicom 155 ATM
OCE4XMP10����� = PCI\VEN_108D&DEV_0013 ;Olicom Ethernet PCI/II 10 Adapter (OC-218X)
OCE4XMP100���� = PCI\VEN_108D&DEV_0012 ;Olicom Ethernet PCI/II 10/100 Adapter (OC-232X)
OCE4XMP2183��� = PCI\VEN_108D&DEV_0013 ;Olicom Ethernet PCI/II 10 Adapter (OC-2183)
OCE4XMP2185��� = PCI\VEN_108D&DEV_0013 ;Olicom Ethernet PCI/II 10 Adapter (OC-2185)
OCE4XMP218X��� = PCI\VEN_108D&DEV_0013 ;Olicom Ethernet PCI/II 10 Adapter (OC-218X)
OCE4XMP2325��� = PCI\VEN_108D&DEV_0012 ;Olicom Ethernet PCI/II 10/100 Adapter (OC-2325)
OCE4XMP2326��� = PCI\VEN_108D&DEV_0014 ;Olicom Ethernet PCI/II 10/100 Adapter (OC-2326)
OCE5X_2327���� = PCI\VEN_1011&DEV_0019 ;Olicom RapidFire 2327 Ethernet 10/100 PCI Adapter
OCT2M3137����� = PCI\VEN_108D&DEV_0001 ;Olicom Token-Ring PCI/II 16/4 Adapter (OC-3137)
OCT4PND4������ = PCI\VEN_108D&DEV_0006 ;Olicom RapidFire 3530 HSTR 100 PCI Server Adapter
OCTK16�������� = 0,OCTK16
OCTK3136������ = PCI\VEN_108D&DEV_0001 ;Olicom Token-Ring PCI 16/4 Adapter (OC-3136)
OCTK3137������ = PCI\VEN_108D&DEV_0001 ;Olicom Token-Ring PCI 16/4 Adapter (OC-3137)
OCTX3136������ = PCI\VEN_108D&DEV_0001 ;Olicom Token-Ring PCI 16/4 Adapter (OC-3136)
OCTX3137������ = PCI\VEN_108D&DEV_0001 ;Olicom Token-Ring PCI/II 16/4 Adapter (OC-3137)
OCTX3139������ = PCI\VEN_108D&DEV_0004 ;Olicom RapidFire 3139 Token-Ring 16/4 PCI Adapter
OCTX3140������ = PCI\VEN_108D&DEV_0004 ;Olicom RapidFire 3140 Token-Ring 16/4 PCI Adapter
OCTX3141������ = PCI\VEN_108D&DEV_0007 ;Olicom RapidFire 3141 Token-Ring 16/4 PCI Fiber Adapter
OCTX3150������ = PCI\VEN_108D&DEV_000A ;Olicom RapidFire 3150 Token-Ring 16/4 PCI Adapter
OCTX3540������ = PCI\VEN_108D&DEV_0008 ;Olicom RapidFire 3540 HSTR 100/16/4 PCI Adapter
PCICARD������� = PCI\VEN_1011&DEV_0009 ;NETGEAR FA310TX Fast Ethernet PCI Adapter
PCINT������� = PCI\VEN_10EC&DEV_8029 ;Allied Telesyn AT-2400 PCI Ethernet Adapter
PEGNICII_NDIS4 = PCI\VEN_1318&DEV_0911 ;Packet Engines G-NIC II Ethernet Adapter
PEI100X_NDIS4� = PCI\VEN_1000&DEV_0702 ;Packet Engines PEI100X Gigabit Ethernet Adapter
PRESTO������� = PCI\VEN_10B6&DEV_0007 ;Madge Presto PCI
RTL8029������� = PCI\VEN_10EC&DEV_8029 ;RTL8029-based PCI Ethernet Adapters
RTL8139������� = PCI\VEN_10EC&DEV_8139 ;TFL LAN INC. RTL8139.SYS (110-00063-00)
RnsFDDI������� = PCI\VEN_1112&DEV_2200 ;RNS 2200 PCI FDDI
RnsFNET2300��� = PCI\VEN_1011&DEV_0009 ;RNS 2300 PCI Fast Ethernet Adapter
RnsFNET2320��� = PCI\VEN_1011&DEV_0009 ;RNS 2320 PCI Adapter
RnsFNET2340��� = PCI\VEN_1011&DEV_0009 ;RNS 2340 PCI Fast Ethernet Adapter
RocketPort���� = null
SK98WINS������ = PCI\VEN_1148&DEV_4300 ;SysKonnect SK-NET Gigabit Ethernet Adapter SK-984x
SKFPWIN������� = PCI\VEN_1148&DEV_4000 ;SysKonnect FDDI PCI Adapter
SMC8432������� = PCI\VEN_1011&DEV_0002 ;SMC PCI Ethernet DECchip 21040
SMC8432e������ = PCI\VEN_1011&DEV_0002 ;SMC PCI Ethernet DECchip 21040
SMC8434������� = PCI\VEN_1011&DEV_0002 ;SMC PCI Ethernet DECchip 21040
SMC9332������� = PCI\VEN_1011&DEV_0009 ;SMC 21140 Chipset
SMC9332BDT���� = PCI\VEN_1011&DEV_0009 ;SMC9332BDT EtherPower 10/100
SMCPWRII������ = PCI\VEN_10B8&DEV_0005 ;SMC EtherPower II 10/100
Streamer������ = PCI\VEN_1014&DEV_0018 ;IBM LANStreamer PCI Adapter
TLNKPPCI������ = PCI\VEN_10b7&DEV_3590 ;3com TokenLink Velocity XL PCI Adapter (3C359)
TRP������� = PCI\VEN_1014&DEV_003E ;IBM PCI Token-Ring Adapter
VT3043������� = PCI\VEN_1106&DEV_3043 ;VIA VT86C100A PCI Fast Ethernet Adapter
W840ND������� = PCI\VEN_1050&DEV_0840 ;Winbond W89C840 Based 100M/10M PCI Ethernet Adapter
W89C840������� = PCI\VEN_1050&DEV_0840 ;Winbond W89C840 PCI

[OCTK16]
ValueName��� = BusType
ValueType��� = 4
1����������� = *OLC9430�������������������������������� ; Olicom Token-Ring ISA 16/4 Adapter (OC-3118)
2����������� = EISA&*OLC0902��������������������������� ; Olicom Token-Ring EISA 16/4 Adapter (OC-3133)
5����������� = PCI\VEN_108D&DEV_0001������������������� ; Olicom Token-Ring PCI 16/4 Adapter (OC-3137)

; -----------------------------------------------------------------
; ISA cards supported using legacy detection
; (this list was supplied by kyleb)
;
; some of these entries may appear repeatedly
; this simply means that the same InfID is used for similar versions
; of a card. The difference can be found by reading the comment for each line
;
[IsaAdapters]
ACCNT������� = *ACC1660 ;Accton EN166x Adapter
AM1500T����� = *pnp8231 ;AM1500
AM1500T1���� = *pnp8231 ;AM1500
AM1500T2���� = *pnp8231 ;AM1500
BLUTOK������ = MDGBLUE� ;Madge Blue Series
DAYSTAR����� = *DStar�� ;COPS/DayStar Digital LocalTalk Adapter
DE22X����� = *DLK2201 ;D-Link DE220 LAN adapter (Legacy Mode)
DLINKDE220�� = *pnp80d6 ;ne2000 compatible
ELNK3ISA509� = *pnp80F7 ;3Com EtherLink III ISA (3C509/3C509b) in ISA mode ?
ENDS3ISA���� = *CSC6040 ;Crystal Semiconductor LAN(TM) CS8920 Ethernet Adapter (Legacy Mode)
ENDS4ISA���� = *CSC6040 ;Crystal Semiconductor LAN(TM) CS8920 Ethernet Adapter (Legacy Mode)
EPRO�������� = *pnp8132 ;Intel EtherExpress PRO/10+
EPRONT������ = *pnp8132 ;Intel EtherExpress PRO/10+
HP27245����� = *pnp8155 ;HP PC LAN Adapter/8 TP (HP27245)
HP27247A���� = *pnp8156 ;HP PC LAN Adapter/16 TP (HP27247A)
HP27247B���� = *pnp8158 ;HP PC LAN Adapter/16 TP Plus (HP27247B)
HP27250����� = *pnp8157 ;HP PC LAN Adapter/8 TL (HP27250)
HP27252A���� = *pnp8159 ;HP PC LAN Adapter/16 TL Plus (HP27252)
IBMEIWNT���� = *IBM1010 ;IBM EtherJet Adapter
IBMISAETHER� = *pnp80d6 ;ne2000 compatible
IBMTOK������ = *IBM1080 ;ibm token ring ; according to netinfo.inf --> *pnp80c9
IBMTOK2ISA�� = *pnp80cc ;ibm token ring II isa ; according to netinfo.inf --> *pnp80ca
IBMTOK4����� = *IBM0001 ;IBM Auto 16/4 ISA Token-Ring (Legacy Mode)
IBMTOK4����� = *pnp80cc ;IBM Auto 16/4 Token-Ring ISA Adapter
IEEPRO������ = *pnp8132 ;Intel EtherExpress PRO/10
J2573A������ = *HWP1950 ;HP (J2573A) 10/100 ISA LAN Adapter
LINKSYSE16�� = *pnp80d6 ;ne2000 compatible
LOOP�������� = *MSLOOP� ;MS Loopback adapter. This is not a real ISA adapter
MDGMPATP���� = MDGATP�� ;Madge Smart 16/4 AT Plus Ringnode
MDGMPATPE��� = *MDG0301 ;Madge Smart 16/4 AT PnP Ringnode
MDGMPISA���� = MDGAT��� ;Madge Smart 16/4 AT Ringnode
MDGMPISACP�� = MDGISACP ;Madge Smart 16/4 ISA Client Plus Ringnode
MDGMPPNP���� = *MDG0101 ;Madge Smart 16/4 ISA Client PnP Ringnode
MSMDGMPATP�� = MDGATP�� ;Madge Smart 16/4 AT Plus Ringnode
MSMDGMPISA�� = MDGAT��� ;Madge Smart 16/4 AT Ringnode
MSMDGMPISACP = MDGISACP ;Madge Smart 16/4 ISA Client Plus Ringnode
MSMDGMPPNP�� = *MDG0101 ;Madge Smart 16/4 ISA Client Ringnode (legacy)
MSMDGMPSM16� = MDGSM16� ;Madge Smart 16 Ringnode
NE2000������ = *pnp80d6 ;ne2000 compatible
OCE2XM������ = *OLC94A5 ;Olicom Ethernet ISA/IV Adapter (OC-217X)
OCE3XM������ = *OLC9510 ;Olicom Ethernet ISA 10/100 Adapter (OC-2375)
OCE3XM������ = *OLC9511 ;Olicom Ethernet ISA 10/100 Adapter (OC-2376)
OCE3XMP2375� = *OLC9510 ;Olicom Ethernet ISA 10/100 Adapter (OC-2375)
OCE3XMP2376� = *OLC9511 ;Olicom Ethernet ISA 10/100 Adapter (OC-2376)
OCT2M3118��� = *pnp9430 ;Olicom Token-Ring ISA 16/4 (OC-3118) (Legacy Mode)
OCTK3117���� = *pnp8191 ;Olicom Token-Ring ISA 16/4 Adapter (OC-3117)
OCTK3118���� = *OLC9430 ;Olicom Token-Ring ISA 16/4 Adapter (OC-3118)
P1390������� = *P139X�� ;Proteon 139x
SMC8003����� = *pnp8323 ;SMC EtherCard (All Types except 8013/A)
SMC8013����� = *PNP81c5 ;SMC EtherCard PLUS Elite 16 (WD/8013EP)
SMC8216����� = *pnp81c8 ;SMC EtherElite Ultra 16
SMC8416����� = *pnp81ca ;SMC EtherElite Ultra 16 /PnP (in non-PnP mode)
SMCISA������ = *pnp8125 ;SMC EtherCard PLUS (WD/8003E)
SMCISA������ = *pnp81c8 ;SMC EtherElite Ultra 16
TE16����� = *pnp1028 ;Intel TokenExpress(TM) ISA 16/p Adapter (Legacy Mode)
TKXP16������ = *INT1020 ;Intel TokenExpress PRO
TRSR0001���� = *IBM0001 ;IBM Auto 16/4 Token-Ring ISA Adapter (Legacy Mode)
TRSR1070���� = *IBM1070 ;IBM Auto Wake 16/4 Token-Ring ISA Adapter (Legacy Mode)
TRSR1070���� = *IBM1070 ;IBM Auto Wake Token-Ring ISA Adapter (Legacy Mode)
TRSR1080���� = *IBM1080 ;IBM Turbo 16/4 Token-Ring Adapter (72H3500) (Legacy Mode)
TRSR1080���� = *IBM1080 ;IBM Turbo 16/4 Token-Ring ISA Adapter (Legacy Mode)
TRSR80CC���� = *pnp80cc ;IBM 16/4 Token-Ring ISA-16 Adapter
TRSR8327���� = *pnp8327 ;IBM Token-Ring Network PC Adapter

; -----------------------------------------------------------------
; EISA cards supported using legacy detection
; (this list is taken from netoemdh.inf)
;
; some of these entries may appear repeatedly
; this is because in netoemdh.inf file certain cards appear as
; infid.1, infid.2 etc.
;
; Note: certain entries have been commented out because the corresponding
;������ entries have been commented out in netoemdh.inf file
[EisaAdapters]
3C592������ = EISA&*TCM5920 ; 3Com Etherlink III
3C597������ = EISA&*TCM5970 ; 3Com 10/100Mb Fast Etherlink
BONSAI����� = 0,BONSAI����� ; COMPAQ NetFlex-2 DualPort ENET Controller
DEC300����� = EISA&DEFEA��� ; DEC EISA FDDI
DURANGO���� = *CPQ6002
E100EISA��� = E100EISA����� ; Intel EtherExpress PRO/100A
ELNK3EISA�� = *TCM5092����� ; 3Com Etherlink III EISA Adapter
ES3210����� = *RII0101����� ; Racal InterLAN ES3210
J2577A����� = *HWP1940����� ; HP J2577A 10/100VG AnyLAN
MAPLE������ = *CPQ6001
MSMDGMPEISA =� *MDG0003���� ; Madge Smart 16/4 EISA Ringnode
NETFLEX3��� = *CPQF120����� ; Compaq NetFlex-3/E Early Modular
NETFLEX3��� = *CPQF140����� ; Compaq NetFlex-3/E Modular
NETFLX����� = *CPQ6101����� ; COMPAQ Netflex/NetFlex-2 DualPort ENET-TR Controller
OCTK3133��� = *OLC1201����� ; Olicom Token-Ring EISA 16/4 Adapter (OC-3133)
OCTK32����� = OCTK32������� ; Olicom 16/4 EISA Server TR
RODAN������ = 0,RODAN������ ; COMPAQ NetFlex-2 DualPort TR Controller
SKETHNT���� = *SKD8000����� ; SysKonnect SK-NET Flash Ethernet Adapter
TKXP32����� = TKXP32������� ; Intel TokenExpress EISA Server TR

[BONSAI]
ValueName= PortNumber
ValueType= 4������������ ; REG_DWORD
EISA_CPQ6200_TOPNET��� = 1
EISA_CPQ6200_BOTTOMNET = 2

[RODAN]
ValueName= PortNumber
ValueType= 4������������ ; REG_DWORD
EISA_CPQ6300_TOPNET��� = 1
EISA_CPQ6300_BOTTOMNET = 2

; -----------------------------------------------------------------
; ISAPNP cards
;
3C515ISA���������� = ISAPNP\TCM5051� ; 3com 515 10/100
DE22X���� = ISAPNP\DLK2201� ;� D-Link DE220 ISA PnP LAN adapter
E100isa����������� = ISAPNP\*INT10C0 ; PRO/100 ISA
E100isa����������� = ISAPNP\*INT10C1 ; PRO/100 ISA
E100isa����������� = ISAPNP\*MDY1000 ; NOVELL NE100I
E100isa����������� = ISAPNP\*MDY1001 ; NOVELL NE100I
ELNK3ISA509������� = ISAPNP\TCM5090� ; 3Com Etherlink III ISA/PCMCIA Adapter (in PnP mode)
ENDS3ISA��� = ISAPNP\CSC6040� ;� Crystal Semiconductor LAN(TM) CS8920 Ethernet Adapter
ENDS4ISA��� = ISAPNP\CSC6040� ;� Crystal Semiconductor LAN(TM) CS8920 Ethernet Adapter
Epro�������������� = ISAPNP\*INT1030 ; PRO/10 ISA
Epro10������������ = ISAPNP\*INT1031 ; PRO/10+ ISA
Epro4������������� = ISAPNP\*INT1031 ; PRO/10+ ISA
Ex10�������������� = ISAPNP\*INT1100 ; ETHEREXPRESS 10
IBMEIMP����������� = ISAPNP\IBM1010� ; IBM Etherjet Adapter
IEEPRO������������ = ISAPNP\INT1030� ; Intel EtherExpress PRO Ethernet Adapter (in PnP mode)
OCT2M3118��� = ISAPNP\OLC9430� ;� Olicom Token-Ring ISA 16/4 (OC-3118)
Octk16������������ = ISAPNP\*INT1028 ; TOKENEXPRESS 16/4
PNPNT���� = ISAPNP\RTL8019� ;� Realtek RTL8019AS ISA PnP Ethernet Adapter
TE16���� = ISAPNP\INT1028� ;� Intel TokenExpress(TM) ISA 16/p Adapter
TRSR1070��� = ISAPNP\IBM1070� ;� IBM Auto Wake 16/4 Token-Ring ISA Adapter
TRSR1080��� = ISAPNP\IBM1080� ;� IBM Turbo 16/4 Token-Ring Adapter (72H3500)

; -----------------------------------------------------------------
; PCMCIA cards
;
[PcmciaAdapters]


ACCTONEN2216��� = PCMCIA\ACCTON-EN2216-PCMCIA-ETHERNET-2909������������ ;Accton EN2216
AMB8002�������� = PCMCIA\AmbiCom_Inc-AMB8002-55A4���������������������� ;Ambicom AMB8002
B80R81J�������� = PCMCIA\NEC-PC-9801N-J09-A09A������������������������� ;PC-9801N-J09
C21������������ = PCMCIA\TOSHIBA-MODEM+ETHERNET_PC_CARD-148C�������������� ;Toshiba Modem+Ethernet PC Card
C550����������� = PCMCIA\COMPAQ-MICROCOM_550_56K_MODEM_+_10/100_ETHERNET-A75B ;Compaq Microcom 550 56K Modem + 10/100 Ethernet
CBE������������ = PCI\VEN_1011&DEV_0019&SUBSYS_0002115D���������������� ;Xircom Cardbus 10/100
CC10BT��������� = PCMCIA\Megahertz-CC10BT/2-BF05����������������������� ;Megahertz CC/XJ10BT or CC/XJ10BC
CE2XPS��������� = PCMCIA\XIRCOM-CREDITCARD_10BASE-T-9F5B��������������� ;Xircom CreditCard Ethernet IIps
CE2XPS��������� = PCMCIA\Xircom-CreditCard-10Base-T-5331��������������� ;Xircom CE2-PS
CE2XPS��������� = PCMCIA\Xircom-CreditCard-10Base-T-64BA��������������� ;Xircom CE2-PS
CE3������������ = PCMCIA\Xircom-CreditCard-10/100-B548����������������� ;Xircom CE3/CE3B
CE550��= PCMCIA\COMPAQ-MICROCOM_550_56K_MODEM_+_10/100_ETHERNET-A75B� ;� Compaq Microcom 550 56K Modem + 10/100 Ethernet
CEM28XPS������� = PCMCIA\XIRCOM-CREDITCARD_ETHERNET+MODEM_28.8-C6CB������ ;Xircom CreditCard Ethernet+Modem 28.8
CEM28XPS������� = PCMCIA\XIRCOM-CREDITCARD_ETHERNET+MODEM_III-592B������� ;Xircom CreditCard Ethernet+Modem 28.8
CEM28XPS������� = PCMCIA\XIRCOM-CREDITCARD_ETHERNET+MODEM_III-D1A2������� ;Xircom CreditCard Ethernet+Modem 28.8
CEM28XPS������� = PCMCIA\Xircom-CreditCard_Ethernet+Modem_28.8-C346���� ;Xircom CEM28
CEM33XPS������� = PCMCIA\XIRCOM-CREDITCARD_ETHERNET+MODEM_33.6-5AA1������ ;Xircom CreditCard Ethernet+Modem 33.6
CEM33XPS������� = PCMCIA\Xircom-CreditCard_Ethernet+Modem_33.6-05DD������ ;Xircom CreditCard Ethernet+Modem 33.6
CEM33XPS������� = PCMCIA\Xircom-CreditCard_Ethernet+Modem_33.6-05DD���� ;Xircom CEM36
CEM56��= PCMCIA\Xircom-CreditCard_Ethernet_10/100_+_Modem_56-C027�;Xircom CreditCard Ethernet Adapter 10/100+Modem 56
CEM56���������� = PCMCIA\XIRCOM-16-BIT_ETHERNET_+_MODEM_56-0B62����������� ;Xircom Ethernet + Modem 56
CEM56���������� = PCMCIA\Xircom-CreditCard_Ethernet_10/100_+_Modem_56-C027��������� ; Xircom CEM56-100
CEM56NT�������� = PCMCIA\XIRCOM-16-BIT_ETHERNET_+_MODEM_56-0B62����������� ;Xircom Ethernet + Modem 56
CEM56NT�������� = PCMCIA\Xircom-CreditCard_Ethernet_10/100_+_Modem_56-C027 ;Xircom Ethernet 10/100 + Modem 56
CENDIS3�������� = PCMCIA\Xircom-CreditCard-10Base-T-5FFA��������������� ;Xircom CE-10
CENDIS3�������� = PCMCIA\Xircom-CreditCard-10Base-T-9FAB��������������� ;Xircom CE-10/A
CENDIS3�������� = PCMCIA\Xircom-CreditCard-10Base-T-B00D������������������ ; Xircom CE-10
CM2NDIS3������� = PCMCIA\Xircom-CreditCard_Ethernet+Modem_II-3DFC��������� ; Xircom CEM2
COMBO���������� = PCMCIA\OLICOM-GOCARD_TOKEN-RING_16/4+MODEM_14400-8095� ; Olicom GoCard TR/Modem 144 PC Card (OC-3230)
COMBO���������� = PCMCIA\OLICOM-GOCARD_TRN/MODEM_336-9566��������������� ; Olicom GoCard TRN/Modem 336 PC Card (OC-3232)
CPQNDIS�������� = PCMCIA\Compaq-Ethernet_LAN_Card-049B����������������� ;Compaq Ethernet
CTNDNT��������� = PCMCIA\Xircom-CreditCard_Token_Ring-0BDF������������� ;Xircom PS-CT2-16CTP
CTNDNT��������� = PCMCIA\Xircom-CreditCard_Token_Ring-8227������������� ;Xircom CT-16CTP
DE660��= PCMCIA\D-Link-DE-660-BD75�;D-Link DE-660 Ethernet PC Card
DFE650��= PCMCIA\D-Link-DFE-650-7143�;D-Link DFE-650 Fast Ethernet PC Card
DLINKDE650����� = PCMCIA\D-Link-DE-650-70C5���������������������������� ;D-Link DE-650
DLINKDE650����� = PCMCIA\D-Link-DE-650-9866���������������������������� ;D-Link DE-650
DLINKDE650����� = PCMCIA\D-Link-DE-650-BF51���������������������������� ;D-Link DE-650 Ethernet PCMCIA Adapter
DLINKDE650����� = PCMCIA\D-Link-DE-650-E649���������������������������� ;D-Link DE-650
EL3C574�������� = PCMCIA\3Com-3C574-TX_Fast_Etherlink_PC_Card-8F53����� ;3Com 3C574-TX
EL3C589�������� = PCMCIA\3Com_Corporation-3C589D-9CA6������������������ ;3Com 3C589d PCMCIA
ELNK16��������� = PCMCIA\3Com_Corporation-3C589-3971������������������� ;3Com 3C589/A
ELNK16��������� = PCMCIA\3Com_Corporation-3C589-75D5������������������� ;3Com 3C589/A
ELNK16B�������� = PCMCIA\3Com_Corporation-3C589-1090������������������� ;3Com 3C589b PCMCIA
ELNK16B�������� = PCMCIA\3Com_Corporation-3C589-1090������������������� ;3Com 3C589b PCMCIA
ELNK16B�������� = PCMCIA\3Com_Corporation-3C589-ADF2������������������� ;3Com 3C589B/C
ELNK16D�������� = PCMCIA\3Com_Corporation-3C589D-9CA6������������������ ;3Com 3C589d PCMCIA
ELNK16D�������� = PCMCIA\3Com_Corporation-3C589D-9CA6������������������ ;3Com 3C589d PCMCIA
ELPC3N��������� = PCMCIA\3Com_Corporation-3C562-56AE������������������� ;3Com 3C562/A
ELPC3N��������� = PCMCIA\3Com_Corporation-3C562B/3C563B-6681����������� ;3Com 3C562B
ELPC3N��������� = PCMCIA\3Com_Corporation-3C562C/3C563C-0F09����������� ;3Com 3C562C
ELPC3ND�������� = PCMCIA\3Com_Corporation-3C562D/3C563D-4893����������� ;3Com 3C562D
EM1144��������� = PCMCIA\MEGAHERTZ-EM1144T-DD5B������������������������ ;Megahertz EM1144-T
EM556N4�������� = 3Com-Megahertz_3CCFEM556-0119������������������������ ;3Com/Megahertz 3CCFEM556
EM556N4�������� = 3Com-Megahertz_3CCFEM556-1008������������������������ ;3Com/Megahertz 3CCFEM556
EM556N4�������� = 3Com-Megahertz_3CCFEM556-F12B������������������������ ;3Com/Megahertz 3CCFEM556
EM556N4�������� = 3Com-Megahertz_3CXEM556-FF08������������������������� ;3Com/Megahertz 3CXEM556
EN2226��������� = PCMCIA\ACCTON-FAST_ETHERCARD-16-E1E4������������������� ;Accton Fast Ethernet-16 10/100 PC Card
ENET����������� = PCMCIA\TOSHIBA_INFORMATION_SYSTEMS-ADVANCED_ETHERNET_PC_CARD_(10/100)-2992 ;Toshiba TPCENET 10/100 Network Adapter
EPC������������ = PCMCIA\Compaq-Netelligent_10/100_PC_Card-02C3�������� ;Compaq Netelligent 10/100 PC Card
GENA����������� = PCMCIA\GENERIC-ETHERNET_10/100_PC_CARD-7FEC������������ ;Ethernet 10/100 PC Card
GENB��= PCMCIA\���;Portable Add-Ons (UK) LTD Ethernet 10/100 PC Card + 56Modem
GENB����������� = PCMCIA\GENERIC-Ethernet_10/100_PC_Card_+_56modem-D664��� ;Ethernet 10/100 PC Card + 56modem
GENBNT��������� = PCMCIA\GENERIC-Ethernet_10/100_PC_Card_+_56modem-D664��� ;Ethernet 10/100 PC Card + 56modem
GOCARD��������� = PCMCIA\OLICOM-ETHERNET-0C79�� ; Olicom Ethernet GoCard (OC-2220)
GOCARD��������� = PCMCIA\Olicom-Ethercom-1018�������������������������� ;Olicom Ethercom (OC-2220)
GOCARD��������� = PCMCIA\Olicom-Ethernet-0C79�������������������������� ;Olicom Ethercom (OC-2220)
GOCARDMF������� = MF\OC2231_DEV1 ; Olicom GoCard ET/Modem 288
GOCARDMF������� = PCMCIA\OLICOM-GOCARD_ETHERNET+MODEM_28800-272C������� ;Olicom GoCard ET/Modem 288 PC Card (OC2231);
GOCARDMF������� = PCMCIA\Olicom-GoCard_Eth/Modem_336-9590�������������� ;Olicom Eth/Modem+33.6 (OC-2232)
GOCARDMF31����� = PCMCIA\OLICOM-GOCARD_ETHERNET+MODEM_28800-272C������� ;Olicom GoCard ET/Modem 288 PC Card (OC2231);
GOCARDMF32����� = PCMCIA\OLICOM-GOCARD_ETH/MODEM_336-9590�������������� ;Olicom GoCard Eth/Modem 336 PC Card (OC2232);
IBMEXMP�������� = PCMCIA\IBM-Etherjet_PC_Card-3FE2��������������������� ;IBM Etherjet
IBMEXMP�������� = PCMCIA\IBM-Etherjet_PC_Card-59C6��������������������� ;IBM Etherjet
IBMEXWNT������� = PCMCIA\IBM-Etherjet_PC_Card-3FE2��������������������� ;Toshiba Noteworthy
IBMTOK��������� = PCMCIA\IBM-TOKEN_RING-EFA1��������������������������� ;IBM Token Ring
IBMTOK��������� = PCMCIA\IBM-TOKEN_RING-EFA1 ; IBM 16/4 Token-Ring Credit Card Adapter (II)
IBMTOKPCMCIA��� = PCMCIA\3Com-TokenLink_Velocity_PC_Card-9888���������� ;3Com 3C389
IBMTOKPCMCIA��� = PCMCIA\3Com-TokenLink_Velocity_PC_Card-9888 ; 3Com 3C389
IBMTOKPCMCIA��� = PCMCIA\IBM-TOKEN_RING-013F��������������������������� ;3Com 3C689
IBMTOKPCMCIA��� = PCMCIA\IBM-TOKEN_RING-013F ; 3Com 3C689 or IBM Auto 16/4 CCA
IPC5008A������� = PCMCIA\TOSHIBA-10/100_ETHERNET_PC_CARD-476D������������ ;Toshiba 10/100 Ethernet PC Card
IPC5008A������� = PCMCIA\TOSHIBA-10/100_ETHERNET_PC_CARD-6DD6������������ ;Toshiba 10/100 Ethernet PC Card
KNEPC2��������� = PCMCIA\Kingston_KNE-PC2-F726������������������������� ;Kingston EtheRX LC - KNE-PC2
LE56����������� = PCMCIA\LEGEND-EASY_56K_MODEM+10-100_ETHERNET+GSM-33CC��� ;Legend Easy 56K Modem+10-100 Ethernet+GSM
LINKSYSEC2T���� = PCMCIA\LINKSYS-E-CARD-0BB7��������������������������� ;Linksys E-Card
LINKSYSEC2T���� = PCMCIA\LINKSYS-E-CARD-6C10��������������������������� ;Linksys E-Card
LINKSYSEC2T���� = PCMCIA\LINKSYS-E-CARD-A2FC��������������������������� ;Linksys E-Card
LINKSYSEC2T���� = PCMCIA\LINKSYS-E-CARD-BC6B��������������������������� ;Linksys E-Card
LINKSYSEC2T���� = PCMCIA\LINKSYS-E-CARD-BCA0��������������������������� ;Linksys E-Card
LINKSYSEC2T���� = PCMCIA\LINKSYS-E-CARD-E28A��������������������������� ;Linksys E-Card
LINKSYSEC2T���� = PCMCIA\Linksys-Combo_PCMCIA_EthernetCard_(EC2T)-86BD� ; Linksys EC2T
M16A����������� = PCMCIA\INTEL-ETHEREXPRESS(TM)_PRO/100_PC_CARD_MOBILE_ADAPTER16-33F8 ; M16A
M16B��= PCMCIA\Intel-EtherExpress(TM)_PRO/100_LAN/Modem_PC_Card_Adapter-3B00� ;� Intel EtherExpress PRO/100 LAN/Modem PC Card Adapter
MDGMPPCMCIA���� = PCMCIA\MADGE-SMART_16/4_PCMCIA_RINGNODE-0757��������� ; "Madge Smart 16/4 PCMCIA Ringnode"
MICRODYNEPCMCIA = PCMCIA\IBM_Corp.-Ethernet-1B1C����������������������� ; IBM Ethernet II Compatible PCMCIA
MSMDGMPPCMCIA�� = PCMCIA\MADGE-SMART_16/4_PCMCIA_RINGNODE-0757��������� ; Madge Smart Ringnode
MSMDGMPPCMCIA�� = PCMCIA\MADGE-SMART_16/4_PCMCIA_RINGNODE-3682��������� ; Madge Smart Ringnode
NE2000IBMCOMPAT = PCMCIA\IBM_Corp.-Ethernet-1B1C����������������������� ; IBM Ethernet II PCMCIA
NE2000IBMCOMPAT = PCMCIA\IBM_Corp.-Ethernet-1B1C����������������������� ; IBM Ethernet II PCMCIA
NE2000SOCKETEA� = PCMCIA\Socket_Communications,_Inc.-Socket_EA_PC_Card_LAN_Adapter-AE82�������� ; Socket EA
NE2000SOCKETEA� = PCMCIA\Socket_Communications_Inc-Socket_EA_PCMCIA_LAN_Adapter_E-09CF��������� ; Socket EA
NE2000SOCKETEA� = PCMCIA\Socket_Communications_Inc-Socket_EA_PCMCIA_LAN_Adapter_Revision_E-09CF ; SocketEA PCMCIA
NE4000PCMCIA��� = PCMCIA\IBM_Corp.-Ethernet-1B1C����������������������� ; Microdyne NE4000
NE4000PCMCIA��� = PCMCIA\IBM_Corp.-Ethernet-6446����������������������� ; NE4100 Infomover PCMCIA
NE4000PCMCIA��� = PCMCIA\IBM_Corp.-Ethernet-6446����������������������� ; NE4100 Infomover PCMCIA
NIA35C��������� = PCMCIA\NEC-PC-9801N-J12-E326������������������������� ;PC-9801N-J12/J12X
NIMCRD��������� = PCMCIA\NEC-PK-UG-J001-2C09��������������������������� ;NEC PK-UG-J001
NSCNE4100������ = PCMCIA\National_Semiconductor-InfoMover_NE4100-2C4D�� ; IBM Ethernet CreditCard II
OCE5X_2250����� = PCI\VEN_1011&DEV_0019&SUBSYS_0017108D��������������� ; Olicom GoCard 2250 Ethernet 10/100 CardBus PC Card
OCT2M3221�= PCMCIA\OLICOM-TR_16/4_II-805B� ;� Olicom GoCard Token-Ring PC Card (OC-3221)
OCTK3220������� = PCMCIA\OLICOM-TR16/4-167B���� ; Olicom GoCard Token-Ring PC Card (OC-3220)
OCTK3220������� = PCMCIA\Olicom-TR16/4-167B���������������������������� ; Olicom Token Ring (OC-3220)
OCTK3221������� = PCMCIA\OLICOM-TR_16/4_II-805B ; Olicom GoCard Token-Ring PC Card (OC-3221)
OCTK3221������� = PCMCIA\Olicom-TR16/4_II-805B������������������������� ; Olicom GoCard TR (OC-3221)
OCTK3230������� = PCMCIA\OLICOM-GOCARD_TOKEN-RING_16/4+MODEM_14400-8095� ; Olicom GoCard TR/Modem 144 PC Card (OC-3230)
OCTK3232������� = PCMCIA\OLICOM-GOCARD_TRN/MODEM_336-9566��������������� ; Olicom GoCard TRN/Modem 336 PC Card (OC-3232)
OCTX3220������� = PCMCIA\OLICOM-TR16/4-167B����������������������������� ; Olicom GoCard Token-Ring PC Card (OC-3220)
OCTX3221������� = PCMCIA\OLICOM-TR_16/4_II-805B������������������������� ; Olicom GoCard Token-Ring PC Card (OC-3221)
OCTX3230������� = PCMCIA\OLICOM-GOCARD_TOKEN-RING_16/4+MODEM_14400-8095� ; Olicom GoCard TR/Modem 144 PC Card (OC-3230)
OCTX3232������� = PCMCIA\OLICOM-GOCARD_TRN/MODEM_336-9566��������������� ; Olicom GoCard TRN/Modem 336 PC Card (OC-3232)
OCTX3250������� = PCI\VEN_108D&DEV_0005&SUBSYS_0005108D&REV_02���������� ; Olicom GoCard 3250 Token-Ring 16/4 CardBus PC Card
OTC4ODNT������� = PCMCIA\Ositech-Trumpcard:Four_of_Diamonds_Ethernet-AC58������ ; Ositech 4OD Eth 10
OTC7ODNT������� = PCMCIA\Ositech-Trumpcard:Seven_of_Diamonds_Ethernet-7356����� ; Ositech 7OD Eth 10/100
OTCJODNT������� = PCMCIA\Ositech-Trumpcard:Jack_of_Diamonds_Modem+Ethernet-065B ; Ositech JOD Eth+33.6
OTCJODNT������� = PCMCIA\Ositech-Trumpcard:Jack_of_Diamonds_Modem+Ethernet-27EF ; Ositech JOD Eth+28.8
OTCJODNT������� = PCMCIA\Ositech-Trumpcard:Jack_of_Diamonds_Modem+Ethernet-6E5D ; Ositech JOD Eth+14.4
OTCJOHNT������� = PCMCIA\Ositech-Trumpcard:Jack_of_Hearts_Modem+Ethernet-D9C1�� ; Ositech JOH Eth+33.6
PCMCIA��������� = PCMCIA\OLICOM-TR16/4-167B���������������������������� ; Olicom GoCard TR 16/4
PCMCIA��������� = PCMCIA\OLICOM-TR_16/4_II-805B������������������������ ; Olicom GoCard Token-Ring PC Card (OC-3221)
RLNET_PCMCIA��� = PCMCIA\RadioLAN-10BaseRadio_Network_(PC_Card)-7510��� ;RadioLAN/10 PC Card RadioNET Interface
TDKFLYR�������� = PCI\VEN_1011&DEV_0019&SUBSYS_001912AF���������������� ; TDK Flyer CardBus
TRSRPCM1������� = PCMCIA\IBM-TOKEN_RING-EFA1��������������������������� ; Toshiba Noteworthy
TRSRPCM1������� = PCMCIA\IBM-TOKEN_RING-EFA1 ; IBM 16/4 Token-Ring Credit Card Adapter (II)
TRSRPCM3������� = PCMCIA\IBM-TOKEN_RING-013F��������������������������� ; DEC Token Ring Auto 16/4 Adapter II
TRSRPCM3������� = PCMCIA\IBM-TOKEN_RING-013F ; IBM Auto 16/4 Token-Ring Credit Card Adapter
TRSRPCM4������� = PCMCIA\IBM-TOKEN_RING-F8CF��������������������������� ; IBM Turbo 16/4 Token Ring
TRSRPCM4������� = PCMCIA\IBM-TOKEN_RING-F8CF ; IBM Turbo 16/4 Token-Ring PC Card
TRSRPCM5������� = PCMCIA\IBM-TOKEN_RING-3D12 ; IBM Turbo 16/4 Token-Ring PC Card 2
; -----------------------------------------------------------------
; Protocols
;
[NetProtocols]
ATALK������ = MS_AppleTalk
DLC�������� = MS_DLC
NBF�������� = MS_NetBEUI
NWLNKIPX��� = MS_NWIPX
NWLNKSPX��� = MS_NWSPX
RASPPTP���� = MS_PPTP
TC��������� = MS_TCPIP
STREAMS���� = MS_Streams
NETMON����� = MS_NetMon
ISOTP������ = MS_Isotpsys

; -----------------------------------------------------------------
; Services
;
[NetServices]
DHCP������� = MS_DHCPServer
NETBIOS���� = MS_NetBios
NETBT������ = MS_NetBT
NETMONTOOLS = MS_NetMon
NWLNKNB���� = MS_NWNB
RAS�������� = RAS���������������� ; this is a special case. leave it alone.
RasMan����� = RAS���������������� ; this is a special case. leave it alone.
RASSVR����� = MS_RasSrv
SNMP������� = MS_SNMP
SRV�������� = MS_Server
SimpTcp���� = MS_SimpTCP
steel������ = MS_RasRtr
unknown���� = MS_DHCPRelay
unknown���� = MS_DNSServer
unknown���� = MS_IIS
unknown���� = MS_IPX_RIP
unknown���� = MS_IP_RIP
unknown���� = MS_NwSapAgent
unknown���� = MS_RPCBanyan
unknown���� = MS_SFM
unknown���� = MS_TCPIPPrinting
unknown���� = MS_WINS

; -----------------------------------------------------------------
; Clients
;
[NetClients]
BROWSER���� = MS_MSClient
RPCLOCATE�� = MS_MSClient
WKSTA������ = MS_MSClient
NWRDR������ = MS_NWClient
NWWKSTA���� = MS_NWClient

file icon MSDV.INFhot!

;
; Copyright (c) 1998-2000, Microsoft Corporation
;
; MSDV.INF --
;
;���� This file contains installation information for IEEE 1394 DV Camera and VCR devices.
;
; Changes:
;
;�� Utilize 61883.sys (2nd level enumerator) and AVC.sys (3rd level enumerator)
;�� Make WIA-enable so WIA can capture still from preview stream
;�� 11-18-2000 Add Philips (DV decoder emulated as DV Camcorder)
;�� 11-18-2000 Add a Generic section for new IHV (Hitachi, Samsung..etc)
;�� 02-26-2001 Add entries for device that supply vendor text
;�� 03-05-2001 Add Hitachi and Samsung vendor sections
;�� 04-09-2001 Add "&DV"
;�� 04-25-2001 Install NULL driver for selective Panasonic subunit not yet supported.

file icon MotoMdm.infhot!

; MotoMdm.inf
;
; Installation driver description file (INF) for Motorola Serial (RS232)
: enabled products. This file is intended to provide product specific
; installation support for Motorola Wireless Telephony devices as Serial
; Modems, using the RS232 protocol, on all Microsoft Windows platforms
; from Windows95A through WindowsXP.
;
; This file will provide support for all Motorola serial-enabled devices
; which respond with the Unimodem ID values of:
;������ - UNIMODEMDEBC3E9F
;������ - UNIMODEM99EF5971
;������ - UNIMODEM3A080733
;������ - UNIMODEM01193027
;������ - UNIMODEM4E8A1DD4
;
; Motorola product models which report using these UnimodemID values are:
;������ - Timeport 280 Family
;������ - V.Series 60 Family
;������ - V.Series 66
;������ - V.Series 70
;������ - A830 Family
;������ - CDMA 1X Family
;
; This file is compatible with the following Windows desktop platforms:
;������ - Windows95A and B(OSR2)
;������ - Windows98
;������ - Windows98 Second Edition
;������ - Windows Millennium
;������ - WindowsNT4
;������ - Windows2000
;������ - WindowsXP
;
; Copyright (c) 2002 by Motorola, Inc.

[Version]
Signature="$CHICAGO$"
Class=Modem
ClassGUID={4D36E96D-E325-11CE-BFC1-08002BE10318}
Provider=%Motorola%
DriverVer=02/26/2003,1.0.0.4

[Manufacturer]
%Motorola% = Motorola

[Strings]
Motorola = "Motorola"
Moto1��� = "Motorola Phone"
Moto2��� = "Motorola V. and Timeport Modem"
Moto3��� = "Motorola V.Series TDMA Modem"
Moto4��� = "Motorola 830 Family Modem"
Moto5��� = "Motorola CDMA 1X Modem"

[Motorola]
%Moto1%=Moto1, UNIMODEMDEBC3E9F ; R1.0 CDMA Product ID
%Moto2%=Moto2, UNIMODEM99EF5971 ; V.Series and Timeport 280 Family ID
%Moto3%=Moto3, UNIMODEM01193027 ; TDMA device ID
%Moto4%=Moto4, UNIMODEM3A080733 ; 830 Family device ID
%Moto5%=Moto5, UNIMODEM4E8A1DD4 ; CDMA 1X Family ID

[Moto1]
AddReg=All, EXTERNAL, Moto.MDMSettings, Moto.MDMResponse, V25terMdmResponse

[Moto2]
AddReg=All, EXTERNAL, Moto.MDMSettings, Moto.MDMResponse, V25terMdmResponse

[Moto3]
AddReg=All, EXTERNAL, Moto.MDMSettings, Moto.MDMResponse, V25terMdmResponse

[Moto4]
AddReg=All, EXTERNAL, Moto.MDMSettings, Moto.MDMResponse, GsmMdmResponse

[Moto5]
AddReg=All, EXTERNAL, Moto.MDMSettings1X, Moto.MDMResponse, V25terMdmResponse

[All]
HKR, , ConfigDialog, , modemui.dll
HKR, , PortSubClass, 1, 02
HKR, , EnumPropPages, , "modemui.dll,EnumPropPages"

HKR, , FriendlyDriver, , Unimodem.vxd
HKR, , DevLoader, , *VCOMM

[EXTERNAL]
HKR, , DeviceType, 1, 01

[Moto.MDMSettings]
HKR, , Properties, 1, 00,00,00,00, FF,00,00,00, FF,00,00,00, 00,00,00,00, 00,00,00,00, 38,03,00,00, 00,C2,01,00, 00,E1,00,00
HKR, , DCB, 1, 1C,00,00,00, 00,E1,00,00, 15,20,00,00, 00,00, 0a,00, 0a,00, 08, 00, 00, 11, 13, 00, 00, 00
HKR, Init, 1, , "ATZ"�; reset default values and terminate any calls
HKR, Init, 2, , "ATE1V1"
HKR, Answer, 1, , "ATA"
HKR, Hangup, 1, , "ATHE1"
HKR, , Reset, , "ATZ"
HKR, Settings, Prefix, , "AT"
HKR, Settings, Terminator, , ""
HKR, Settings, DialPrefix, , "D"
HKR, Settings, DialSuffix, , ""
HKR, Settings, Pulse, , "P"
HKR, Settings, Tone, , "T"
HKR, Monitor, 1, , "ATS0=0"
HKR, Monitor, 2, , "None"
HKR, Settings, FlowControl_Off, ,� "+IFC=0,0"
HKR, Settings, FlowControl_Hard, , "+IFC=2,2"
HKR, Settings, FlowControl_Soft, , "+IFC=1,1"

[Moto.MDMSettings1X]
HKR, , Properties, 1, 00,00,00,00, FF,00,00,00, FF,00,00,00, 00,00,00,00, 00,00,00,00, 38,03,00,00, 00,C2,01,00, 00,4B,00,00
HKR, , DCB, 1, 1C,00,00,00, 00,4B,00,00, 15,20,00,00, 00,00, 0a,00, 0a,00, 08, 00, 00, 11, 13, 00, 00, 00
HKR, Init, 1, , "ATZ"�; reset default values and terminate any calls
HKR, Init, 2, , "ATE1V1"
HKR, Answer, 1, , "ATA"
HKR, Hangup, 1, , "ATHE1"
HKR, , Reset, , "ATZ"
HKR, Settings, Prefix, , "AT"
HKR, Settings, Terminator, , ""
HKR, Settings, DialPrefix, , "D"
HKR, Settings, DialSuffix, , ""
HKR, Settings, Pulse, , "P"
HKR, Settings, Tone, , "T"
HKR, Monitor, 1, , "ATS0=0"
HKR, Monitor, 2, , "None"
HKR, Settings, FlowControl_Off, ,� "+IFC=0,0"
HKR, Settings, FlowControl_Hard, , "+IFC=2,2"
HKR, Settings, FlowControl_Soft, , "+IFC=1,1"

[Moto.MDMResponse]
HKR, Responses, "OK",��������� 1, 00, 00, 00,00,00,00, 00,00,00,00
HKR, Responses, "RING",������� 1, 08, 00, 00,00,00,00, 00,00,00,00
HKR, Responses, "ERROR",������ 1, 03, 00, 00,00,00,00, 00,00,00,00
HKR, Responses, "NO DIALTONE", 1, 05, 00, 00,00,00,00, 00,00,00,00
HKR, Responses, "NO DIAL TONE",1, 05, 00, 00,00,00,00, 00,00,00,00
HKR, Responses, "BUSY",������� 1, 06, 00, 00,00,00,00, 00,00,00,00
HKR, Responses, "NO CARRIER",� 1, 04, 00, 00,00,00,00, 00,00,00,00
HKR, Responses, "NO ANSWER",�� 1, 07, 00, 00,00,00,00, 00,00,00,00
HKR, Responses, "CONNECT",���� 1, 02, 00, 00,00,00,00, 00,00,00,00
HKR, Responses, "CONNECT 300",������ 1, 02, 00, 2C,01,00,00, 00,00,00,00
HKR, Responses, "CONNECT 600",������ 1, 02, 00, 58,02,00,00, 00,00,00,00
HKR, Responses, "CONNECT 1200",����� 1, 02, 00, B0,04,00,00, 00,00,00,00
HKR, Responses, "CONNECT 2400",����� 1, 02, 00, 60,09,00,00, 00,00,00,00
HKR, Responses, "CONNECT 4800",����� 1, 02, 00, C0,12,00,00, 00,00,00,00
HKR, Responses, "CONNECT 7200",����� 1, 02, 00, 20,1C,00,00, 00,00,00,00
HKR, Responses, "CONNECT 9600",����� 1, 02, 00, 80,25,00,00, 00,00,00,00
HKR, Responses, "CONNECT 12000",���� 1, 02, 00, E0,2E,00,00, 00,00,00,00
HKR, Responses, "CONNECT 14400",���� 1, 02, 00, 40,38,00,00, 00,00,00,00
HKR, Responses, "CONNECT 16800",���� 1, 02, 00, A0,41,00,00, 00,00,00,00
HKR, Responses, "CONNECT 19200",���� 1, 02, 00, 00,4B,00,00, 00,00,00,00
HKR, Responses, "CONNECT 21600",���� 1, 02, 00, 60,54,00,00, 00,00,00,00
HKR, Responses, "CONNECT 24000",���� 1, 02, 00, C0,5D,00,00, 00,00,00,00
HKR, Responses, "CONNECT 26400",���� 1, 02, 00, 20,67,00,00, 00,00,00,00
HKR, Responses, "CONNECT 28800",���� 1, 02, 00, 80,70,00,00, 00,00,00,00
HKR, Responses, "CONNECT 31200",���� 1, 02, 00, E0,79,00,00, 00,00,00,00
HKR, Responses, "CONNECT 33600",���� 1, 02, 00, 40,83,00,00, 00,00,00,00
HKR, Responses, "CONNECT 38400",���� 1, 02, 00, 00,96,00,00, 00,00,00,00
HKR, Responses, "CONNECT 57600",���� 1, 02, 00, 00,E1,00,00, 00,00,00,00
HKR, Responses, "CONNECT 115200",��� 1, 02, 00, 00,C2,01,00, 00,00,00,00
HKR, Responses, "CONNECT 115,200",�� 1, 02, 00, 00,C2,01,00, 00,00,00,00

[GsmMdmResponse]
HKR, Responses, "0",� 1, 00, 00, 00,00,00,00, 00,00,00,00 ; OK - Command executed
HKR, Responses, "1",� 1, 02, 00, 00,00,00,00, 00,00,00,00 ; CONNECT - Connection
HKR, Responses, "2",� 1, 08, 00, 00,00,00,00, 00,00,00,00 ; RING - Ring signal indicated
HKR, Responses, "3",� 1, 04, 00, 00,00,00,00, 00,00,00,00 ; NO CARRIER
HKR, Responses, "4",� 1, 03, 00, 00,00,00,00, 00,00,00,00 ; ERROR - Invalid command
HKR, Responses, "5",� 1, 02, 00, B0,04,00,00, 00,00,00,00 ; NO DIALTONE - No dial tone detected
HKR, Responses, "6",� 1, 05, 00, 00,00,00,00, 00,00,00,00 ; BUSY - Engaged (busy) signal
HKR, Responses, "7",� 1, 06, 00, 00,00,00,00, 00,00,00,00 ; NO ANSWER

[V25terMdmResponse]
HKR, Responses, "0",� 1, 00, 00, 00,00,00,00, 00,00,00,00 ; OK - Command executed
HKR, Responses, "1",� 1, 02, 00, 00,00,00,00, 00,00,00,00 ; CONNECT - Connection
HKR, Responses, "2",� 1, 08, 00, 00,00,00,00, 00,00,00,00 ; RING - Ring signal indicated
HKR, Responses, "3",� 1, 04, 00, 00,00,00,00, 00,00,00,00 ; NO CARRIER
HKR, Responses, "4",� 1, 03, 00, 00,00,00,00, 00,00,00,00 ; ERROR - Invalid command
HKR, Responses, "6",� 1, 05, 00, 00,00,00,00, 00,00,00,00 ; NO DIALTONE - No dial tone detected
HKR, Responses, "7",� 1, 06, 00, 00,00,00,00, 00,00,00,00 ; BUSY - Engaged (busy) signal
HKR, Responses, "8",� 1, 07, 00, 00,00,00,00, 00,00,00,00 ; NO ANSWER

file icon mmdriver.infhot!

[Source Media Descriptions]
�� 1 = "Windows Whistler Professional CD-ROM" , TAGFILE = cdrom_ip.5


[Signature]
��� FileType = MICROSOFT_FILE

[GetSignature]
��� read-syms Signature
��� return $(FileType)

[Installable.Drivers]
cdaudio = 1:MCICDA.DLL, "CDAudio", "(MCI) CD Audio",,
imaadpcm = 1:IMAADP32.ACM,"MSACM.imaadpcm", "IMA ADPCM� Audio CODEC",,
Indeo = 1:IR32_32.DLL, "VIDC.IV32, VIDC.IV31", "Indeo codec by Intel",,
mciavi = 1:MCIAVI32.DLL, "AVIVideo", "(MCI) Microsoft Video for Windows",,,msvidc
midimapper = 1:MIDIMAP.DLL, "MidiMapper", "MIDI Mapper",,
mmdrv = 1:MMDRV.DLL, "Wave,MIDI,Aux", "Low level Wave, MIDI and AUX support"
msadpcm = 1:MSADP32.ACM,"MSACM.msadpcm", "Microsoft ADPCM Audio CODEC",,
msg711 = 1:MSG711.ACM,"MSACM.msg711", "Microsoft CCITT G.711 Audio CODEC",,
msgsm610 = 1:MSGSM32.ACM,"MSACM.msgsm610", "Microsoft GSM 6.10� Audio CODEC",,
msvidc = 1:MSVIDC32.DLL, "VIDC.MSVC", "Microsoft Video 1",,,
sequencer = 1:MCISEQ.DLL, "Sequencer", "(MCI) Midi Sequencer",,
trspch = 1:TSSOFT32.ACM,"MSACM.trspch", "DSP Group TrueSpeech(TM) Audio CODEC",,
VIDC.CVID = 1:ICCVID.DLL, "VIDC.CVID", "Cinepak Codec by Radius Inc.",,
VIDC.MRLE = 1:MSRLE32.DLL, "VIDC.MRLE", "Microsoft RLE Codec",,
wave = 1:MCIWAVE.DLL, "WaveAudio", "(MCI) Sound",, "4"
wavemapper = 1:MSACM32.DRV, "WaveMapper", "Microsoft Audio Compression Manager",,

[mciavi]
1:MSVFW32.DLL

[midimapper]
1:MIDIMAP.CFG

[WaveMapper]
1:MSACM.DLL
1:MSACM32.DLL

Results 16 - 20 of 28


Missing dll most recent download:

d3dx9_42.dll vcredist_x86.exe scph1001.bin lame_enc.dll xinput1_3.dll msvcr100.dll d3dx9_43.dll d3dx10_43.dll msvcp110.dll msvcp120.dll msvcr110.dll xlive.dll msvcr110.dll avformat-55.dll

Join the Discussion:



Popular Dlls:


Need Help? Find us at facebook

All possible solutions

Got computer error message like:

"dll crash"
"bad image"
"error loading"
"Dll was not found"
"the procedure entry point Dll error"
"Dll could not be located"
"Access Violation"
"Cannot register Dll"

at startup or shutdown or run program?
No "missing dll" anymore - Repair dll errors - How to fix windows dll corrupt on your windows xp,vista,2000/2003,win7, win8,win10

  • Download and install dll.
  • Download and install the latest update.
  • Install windows updates automatically/regularly, allow Windows check updates in the background.
  • Reinstall the application.