thank you
No. Net class is for netcards (unless you make a "dummy" ndis driver).
--PA
yes, that is what i want. is it possible?
yes, that is what i want. is it possible?
Take a look at the src\network\ndis\netvmini sample in the Server 2003 SP1
DDK. It has all you need. You just have to rip some code from the send &
receive handler to make one such driver.
--
--
-Eliyas
This posting is provided "AS IS" with no warranties, and confers no rights.
http://www.microsoft.com/whdc/driver/default.mspx
http://www.microsoft.com/whdc/driver/kernel/KB-drv.mspx
is that possible? it is not for a product. just something i'm trying to
do.
thank you
d
--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.
<eti...@gmail.com> wrote in message
news:1134406324.3...@z14g2000cwz.googlegroups.com...
But what is the point to make it Net class?
This driver won't start (because it is disabled), and won't register with
NDIS.
A connection for this device won't be created anyway.
--PA
d
--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.
"Pavel A." <pav...@NOwritemeNO.com> wrote in message
news:6B5A5650-7DD9-4C81...@microsoft.com...
[Version]
Signature="$WINDOWS NT$"
Class=ROASTER
ClassGuid={cc82335f-fb0d-4544-a91a-7dc9a7c6e8c3}
; ================= Class section =====================
[ClassInstall32]
Addreg=RoasterClassReg
[RoasterClassReg]
HKR,,,0,%ClassName%
HKR,,Icon,,-5
;*****************************************
; Roaster Device Install Section
;*****************************************
[Manufacturer]
%StdMfg%=Standard
[Standard]
; DisplayName Section DeviceId
; ----------- ------- --------
%RoasterDevice.DeviceDesc%=Roaster_Device, Roaster\MsRoaster
[Roaster_Device.NT]
;
;-------------- Service installation
[Roaster_Device.NT.Services]
AddService = , %SPSVCINST_ASSOCSERVICE%,
[Strings]
SPSVCINST_ASSOCSERVICE= 0x00000002
MSFT = "Microsoft"
StdMfg = "(Standard system devices)"
ClassName = "Roaster"
RoasterDevice.DeviceDesc = "Microsoft Roaster"
--
-Eliyas
This posting is provided "AS IS" with no warranties, and confers no rights.
http://www.microsoft.com/whdc/driver/kernel/KB-drv.mspx
thank you very much
No wonder... The net class coinstaller looked for it's stuff
and didn't found it => failure.
> another question, how do make the driver to start disabled?
As Doron wrote, your requirement is quite unusual.
Try to make up a standard netcard INF (with all required sections)
and a minimal dummy driver, that returns from DriverEntry
with some error and won't register with ndis.
This won't look exactly as disabled device, but close enough...
--PA
d
--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.
"Pavel A." <pav...@NOwritemeNO.com> wrote in message
news:61803F6E-8A90-4490...@microsoft.com...
[Version]
Signature="$WINDOWS NT$"
Class = Net
ClassGUID = {4d36e972-e325-11ce-bfc1-08002be10318}
;*****************************************
; Roaster Device Install Section
;*****************************************
[Manufacturer]
%StdMfg%=Standard
[Standard]
; DisplayName Section DeviceId
; ----------- ------- --------
%RoasterDevice.DeviceDesc%=Roaster_Device.ndi, Roaster\MsRoaster
[Roaster_Device.ndi]
Characteristics = 0x10; NCF_NO_SERVICE
[Roaster_Device.ndi]
;
;-------------- Service installation
[Roaster_Device.ndi.Services]
AddService = , %SPSVCINST_ASSOCSERVICE%,
[Strings]
SPSVCINST_ASSOCSERVICE= 0x00000002
MSFT = "Microsoft"
StdMfg = "(Standard system devices)"
ClassName = "Roaster"
RoasterDevice.DeviceDesc = "Microsoft Roaster"
--
-Eliyas
This posting is provided "AS IS" with no warranties, and confers no rights.
http://www.microsoft.com/whdc/driver/kernel/KB-drv.mspx
except for the reboot issue (which is not that big of an issue for me,
because i just cancel it) that is what i've looked for.
does any one know how to prevent the reboot pop up?
again,
thank you all.
Yes sure :)
Either do not use Net class for your null driver, or make a real "dummy"
ndis miniport.
--PA