阅读:812回复:1
NDIS Intermediate driver under NT4
所有留言及回应
Message 1 in thread 寄件者:skameni (skameni@wanadoo.fr) 主旨:NDIS Intermediate driver under NT4 新闻群组:microsoft.public.development.device.drivers View this article only 日期:2002-03-25 06:47:56 PST Hi, I\'ve been looking at the IMSAMP sample on NT4. Is there a tool that I can use to install the driver, or do I have to write a piece of software? Or is there any updated sample for intermediate drivers under NT4? Thanks Serguei Message 2 in thread 寄件者:Ustad (oostaad2000@yahoo.com) 主旨:Re: NDIS Intermediate driver under NT4 新闻群组:microsoft.public.development.device.drivers View this article only 日期:2002-03-25 12:52:27 PST check out this site: www.osr.com this has lots of resources and tools (written by osr people) for your requirement, OSR driver loader should be close. Check under resources->dowonloads. > Or is there any updated sample for intermediate drivers under NT4? I am also looking for updated sample for IMs for XP/win2k . So far I have come to know that www.pcausa.com sells samples, currently for NT. Check them out. \"skameni\" <skameni@wanadoo.fr> wrote in message news:<OGlHGuA1BHA.1796@tkmsftngp02>... > Hi, > > I\'ve been looking at the IMSAMP sample on NT4. > Is there a tool that I can use to install the driver, or do I have to write > a piece of software? > Or is there any updated sample for intermediate drivers under NT4? > > Thanks > > Serguei Message 3 in thread 寄件者:Stephan Wolf (stewo68@hotmail.com) 主旨:Re: NDIS Intermediate driver under NT4 新闻群组:microsoft.public.development.device.drivers View this article only 日期:2002-03-26 05:43:18 PST IMSAMP is for NT4 only. The W2K has the PASSTHRU sample and the XP DDK in addition has the MUX sample. Do not look at IMSAMP if you don\'t need to write an NDIS intermediate for NT4. Look at PASSTHRU and MUX instead. Stephan --- On 25 Mar 2002 12:52:26 -0800, oostaad2000@yahoo.com (Ustad) wrote: >check out this site: www.osr.com >this has lots of resources and tools (written by osr people) >for your requirement, OSR driver loader should be close. >Check under resources->dowonloads. > >> Or is there any updated sample for intermediate drivers under NT4? >I am also looking for updated sample for IMs for XP/win2k . So far I >have come to know that www.pcausa.com sells samples, currently for NT. >Check them out. > > >\"skameni\" <skameni@wanadoo.fr> wrote in message news:<OGlHGuA1BHA.1796@tkmsftngp02>... >> Hi, >> >> I\'ve been looking at the IMSAMP sample on NT4. >> Is there a tool that I can use to install the driver, or do I have to write >> a piece of software? >> Or is there any updated sample for intermediate drivers under NT4? >> >> Thanks >> >> Serguei Message 4 in thread 寄件者:skameni (skameni@wanadoo.fr) 主旨:Re: NDIS Intermediate driver under NT4 新闻群组:microsoft.public.development.device.drivers View this article only 日期:2002-03-26 07:19:54 PST Actually I need to write a compatible driver for all MS platforms...No, I\'m not crazy.. I\'ve already done all the stuff for Windows 9x/2K/XP, but NDIS IM drivers support under NT4 seems a little difficult... My concern is to programmatically install such a driver under NT. Any idea? Serguei \"Stephan Wolf\" <stewo68@hotmail.com> a écrit dans le message de news: 3ca079a0.8711686@news.t-online.de... > IMSAMP is for NT4 only. The W2K has the PASSTHRU sample and the XP DDK > in addition has the MUX sample. > > Do not look at IMSAMP if you don\'t need to write an NDIS intermediate > for NT4. Look at PASSTHRU and MUX instead. > > Stephan > --- > On 25 Mar 2002 12:52:26 -0800, oostaad2000@yahoo.com (Ustad) wrote: > > >check out this site: www.osr.com > >this has lots of resources and tools (written by osr people) > >for your requirement, OSR driver loader should be close. > >Check under resources->dowonloads. > > > >> Or is there any updated sample for intermediate drivers under NT4? > >I am also looking for updated sample for IMs for XP/win2k . So far I > >have come to know that www.pcausa.com sells samples, currently for NT. > >Check them out. > > > > > >\"skameni\" <skameni@wanadoo.fr> wrote in message news:<OGlHGuA1BHA.1796@tkmsftngp02>... > >> Hi, > >> > >> I\'ve been looking at the IMSAMP sample on NT4. > >> Is there a tool that I can use to install the driver, or do I have to write > >> a piece of software? > >> Or is there any updated sample for intermediate drivers under NT4? > >> > >> Thanks > >> > >> Serguei Message 5 in thread 寄件者:Stephan Wolf (stewo68@hotmail.com) 主旨:Re: NDIS Intermediate driver under NT4 新闻群组:microsoft.public.development.device.drivers View this article only 日期:2002-03-26 08:01:03 PST I posted the following a few days ago only: |You need to spawn SETUP.EXE. Do a search for \"NTN_Origination\" and |\"NCPA\" for details. Stephan --- On Tue, 26 Mar 2002 16:18:27 +0100, \"skameni\" <skameni@wanadoo.fr> wrote: >Actually I need to write a compatible driver for all MS platforms...No, I\'m >not crazy.. >I\'ve already done all the stuff for Windows 9x/2K/XP, but NDIS IM drivers >support under NT4 seems a little difficult... >My concern is to programmatically install such a driver under NT. >Any idea? > >Serguei Message 6 in thread 寄件者:Levan Jgarkava (levanikoNoSpam@mailru.com) 主旨:Re: NDIS Intermediate driver under NT4 新闻群组:microsoft.public.development.device.drivers View this article only 日期:2002-04-02 10:22:02 PST > I posted the following a few days ago only: > > |You need to spawn SETUP.EXE. Do a search for \"NTN_Origination\" and > |\"NCPA\" for details. Yes. It was answer on my question fbout oemsetup.inf files, but there are some problems with bindings... I try to execute some .bat files for test. Here aser they... ----------------- rem install.bat cd %systemroot% setup /f /i%systemroot%\\system32\\ncpashel.inf /T NTN_InstallMode = Install /T NTN_Origination = NCPA /T NTN_Infname = %1 /T NTN_SRCPATH = %2 /T NTN_InfOption = IMSAMP /v setup /f /i%systemroot%\\system32\\ncpashel.inf /T NTN_InstallMode = bind /T NTN_Origination = NCPA /T NTN_Infname = %1 /T NTN_SRCPATH = %2 /T NTN_InfOption = IMSAMP /v EXIT ----------------- ----------------- rem bind.bat cd %systemroot% setup /f /i%systemroot%\\system32\\ncpashel.inf /T NTN_InstallMode = Install /T NTN_Origination = NCPA /T NTN_Infname = %1 /T NTN_SRCPATH = %2 /T NTN_InfOption = IMSAMP /v setup /f /i%systemroot%\\system32\\ncpashel.inf /T NTN_InstallMode = bind /T NTN_Origination = NCPA /T NTN_Infname = %1 /T NTN_SRCPATH = %2 /T NTN_InfOption = IMSAMP /v EXIT ------------------ ----------------- rem bind1.bat cd %systemroot% setup /f /i%systemroot%\\system32\\ncpashel.inf /cBindingsReview /T NTN_InstallMode = bind /T NTN_Origination = NCPA /T NTN_Infname = %1 /T NTN_SRCPATH = %2 /T NTN_InfOption = IMSAMP /v EXIT ------------------ It seems, that driver was installed(it was appeared on the NCPA), but bindings are not done correctly and in result, driver is not working. :( Can anybody explain me what am i doing wrong and what should I do to do bindings correctly? > > Stephan > --- > On Tue, 26 Mar 2002 16:18:27 +0100, \"skameni\" <skameni@wanadoo.fr> > wrote: > > >Actually I need to write a compatible driver for all MS platforms...No, I\'m > >not crazy.. > >I\'ve already done all the stuff for Windows 9x/2K/XP, but NDIS IM drivers > >support under NT4 seems a little difficult... > >My concern is to programmatically install such a driver under NT. > >Any idea? > > > >Serguei Message 7 in thread 寄件者:Stephan Wolf (stewo68@hotmail.com) 主旨:Re: NDIS Intermediate driver under NT4 新闻群组:microsoft.public.development.device.drivers View this article only 日期:2002-04-05 05:24:36 PST See Knowledge Base article Q231315: \"How to Renew Network Bindings Using Setup.exe\" http://support.microsoft.com/default.aspx?scid=kb;EN-US;q231315 Stephan --- On Tue, 2 Apr 2002 22:19:12 -0800, \"Levan Jgarkava\" <levanikoNoSpam@mailru.com> wrote: >> I posted the following a few days ago only: >> >> |You need to spawn SETUP.EXE. Do a search for \"NTN_Origination\" and >> |\"NCPA\" for details. >Yes. It was answer on my question fbout oemsetup.inf files, but there are >some problems with bindings... >I try to execute some .bat files for test. Here aser they... >----------------- >rem install.bat >cd %systemroot% >setup /f /i%systemroot%\\system32\\ncpashel.inf /T NTN_InstallMode = Install >/T NTN_Origination = NCPA /T NTN_Infname = %1 /T NTN_SRCPATH = %2 /T >NTN_InfOption = IMSAMP /v >setup /f /i%systemroot%\\system32\\ncpashel.inf /T NTN_InstallMode = bind /T >NTN_Origination = NCPA /T NTN_Infname = %1 /T NTN_SRCPATH = %2 /T >NTN_InfOption = IMSAMP /v >EXIT >----------------- >----------------- >rem bind.bat >cd %systemroot% >setup /f /i%systemroot%\\system32\\ncpashel.inf /T NTN_InstallMode = Install >/T NTN_Origination = NCPA /T NTN_Infname = %1 /T NTN_SRCPATH = %2 /T >NTN_InfOption = IMSAMP /v >setup /f /i%systemroot%\\system32\\ncpashel.inf /T NTN_InstallMode = bind /T >NTN_Origination = NCPA /T NTN_Infname = %1 /T NTN_SRCPATH = %2 /T >NTN_InfOption = IMSAMP /v >EXIT >------------------ >----------------- >rem bind1.bat >cd %systemroot% >setup /f /i%systemroot%\\system32\\ncpashel.inf /cBindingsReview /T >NTN_InstallMode = bind /T NTN_Origination = NCPA /T NTN_Infname = %1 /T >NTN_SRCPATH = %2 /T NTN_InfOption = IMSAMP /v >EXIT >------------------ >It seems, that driver was installed(it was appeared on the NCPA), but >bindings are not done correctly and in result, driver is not working. :( 观看文件全部内容 (仍有 22 行) ?2002 Google |
|
|
沙发#
发布于:2002-05-23 23:22
咋都是e文的呢?
|
|
|