Riga
Thu Jul 22 02:28:49 CDT 2004
I could install the protocol driver, but seems this driver is not loaded by
ndis.vxd.
How could i check what happened ?
The INF is listed below
;-------------------------------------------------------------------------
; NDISIPC.INF -- Sample NDIS Protocol Driver
;
; Copyright (c) 2003, Microsoft Corporation
;-------------------------------------------------------------------------
[version]
signature = "$CHICAGO$"
Class = NetTrans
provider = %Msft%
[Manufacturer]
%Msft%=MSFT
[MSFT]
%NDISIPC.DeviceDesc%= NDISIPC.ndi, NDISIPC
;***************************************************************************
; NDISIPC
;***************************************************************************
[NDISIPC.ndi]
CopyFiles=NDISIPC.CopyFiles
AddReg=NDISIPC.ndi.reg
DeviceID=NDISIPC
MaxInstance=8
[NDISIPC.ndi.reg]
HKR,Ndi,DeviceID,,NDISIPC
HKR,Ndi,MaxInstance,,8
; NDIS info
HKR,NDIS,LogDriverName,,"NDISIPC"
HKR,NDIS,MajorNdisVersion,1,05
HKR,NDIS,MinorNdisVersion,1,00
; Interfaces
HKR,Ndi\Interfaces,DefUpper,,""
HKR,Ndi\Interfaces,DefLower,,"ndis3,ndis4,ndis5"
HKR,Ndi\Interfaces,UpperRange,,""
HKR,Ndi\Interfaces,LowerRange,,"ndis3,ndis4,ndis5"
; Install-Remove Sections
HKR,Ndi\Install,,,"NDISIPC.Install"
HKR,Ndi\Remove,,,"NDISIPC.Remove"
; Context help
HKR,Ndi,HelpText,,%NDISIPC_HELP%
[NDISIPC.Install]
AddReg=NDISIPC.AddReg
DelReg=NDISIPC.Ins.DelReg
CopyFiles=NDISIPC.CopyFiles, NDISIPC.CopyFiles.inf
[NDISIPC.AddReg]
HKR,,DevLoader,,*ndis,*ntkern
HKR,,DeviceVxDs,,"NDISIPC.sys"
[NDISIPC.CopyFiles]
NDISIPC.sys
[NDISIPC.CopyFiles.inf]
NDISIPC9X.inf
[NDISIPC.Remove]
DelReg=NDISIPC.Rmv.DelReg
DelFiles=NDISIPC.CopyFiles, NDISIPC.CopyFiles.inf
[NDISIPC.Rmv.DelReg]
;***************************************************************************
; Destination Directories
;***************************************************************************
[DestinationDirs]
NDISIPC.CopyFiles = 11 ; LDID_SYS
NDISIPC.CopyFiles.inf = 17 ; LDID_INF
[SourceDisksNames]
[SourceDisksFiles]
;***************************************************************************
; Localizable Strings
;***************************************************************************
[strings]
Msft="Microsoft"
V_CLASSNAME="Network Protocol"
; Devices
NDISIPC.DeviceDesc="NDIS Protocol Driver"
; Parameters
PARAM_YES="Yes"
PARAM_NO="No"
PARAM_OFF="Off"
PARAM_NONE="None"
; Context help
NDISIPC_HELP="A driver to support user-mode I/O on NDIS devices"
"Stephan Wolf [MVP]" <stewo68@hotmail.com> ???
news:4jatf0hebi8ahbuuduk0d55u3f85eu87nl@4ax.com ???...
> See
>
> "Q. How can I adapt NDISUIO to work on Windows 98/ME?"
>
http://www.ndis.com/faq/QA12030301.htm
>
> Note: NDISUIO has been renamed to NDISPROT in the Windows 2003 version
> of the DDK.
>
> Stephan
> ---
> On Wed, 21 Jul 2004 22:26:34 +0800, "Riga" <Riga@IPNDOTCOM> wrote:
>
> >Hi,
> >
> >Does any one know how to build the ndisprot for Win98SE/ME ?
> >
> >I use the WinXP SP1 DDK (select the win 2K build environment) to build
the
> >ndisprot.sys.
> >
> >But the ndisprot.inf could not used to install ndisprot.sys on
win98SE/ME.
> >
> >Any suggestion ?