I have not been able to install the latest ndistool.msi on two machines with XP SP1. I get an error that says: "A DLL required for this install to complete...
... Thanks for the feedback. It is helpful for folks to report problems like this. They can go unnoticed. I just installed NDISTools downloaded from the web on...
The Windows XP/SP1 computers had windows installer V2.0. I undated to V3.1 and the installation works now. I tried this on two machines with success....Dave...
... I guess I should re-work the MSI package to include the necessary installer... (I'm not the greatest at user-mode stuff...). I hope that NDISTools are...
Hi my new friends Assume I process a packet using IM (intermediate driver) during send or receive. Is it possible to see the changes on the packet through...
After receiving a packet descriptor by IM driver by calling ProtocolReceive function by NDIS, the IM will call NdisTransferData. Then after returning SUCCESS...
If a packet descriptor is actually available in ProtocolReceive (NdisGetReceivedPacket does not return NULL), then the packet descriptor contains the entire...
I have a confusion of where (exactly) I can process the received packet in the IM (intermediate) driver case. I know that there are two roads to receive the...
Omar, If you read the DDK carefully you will see that ProtocolReceive is a _required_ handler and ProtocolReceivePacket is an _optional_ handler. So, if you do...
This is all spelled out pretty clearly in the DDK¹s passthru sample, as well as in the mux sample. I¹d look at those to get a better idea of how things work....
I would like to use the capabilities of Java virtual machine in my project in phd. Is there a method to use java language (along with c language) in the...
Java doesn¹t run in the kernel, so you can¹t directly use it. Depending on what you want to use it for, the best thing would probably be to use an inverted...
The Microsoft Passthru driver doesn't do anything at all, so it is not going to be useful unless you make modifications. Modifications to the driver _MUST_ be...
Can anyone please suggest how to disable a wireless network adapter using C# .NET. Any pointer to using INetCfg API using .NET will also be helpful. I am new...
Hi my friends i have been read the DDK, but there are some confusions in the position in which i can process the Received packet. it is opposite to the...
Mux sample is another intermediate driver sample. While Passthru is a filter IM driver (1:1), mux sample is a "N:1" MUX IM driver. It creates multiple virtual...
Hi, How can I transfer from kernel mode (in the IM driver) to the user mode (the visual c environment). Also, how can I make a DLL file. Thank you, With my...
Dear all I am a phd student in the research stage . My research deals with the active networking and the security of active router under windows OS, hence...
If you don¹t know how to make a DLL from C code yet, I¹d say you have a lot of background studying to do before you¹re going to be able to do much with ...
Hi, I want to write an IM driver or Protocol driver to intercept/sniff GPRS connection on PPC 2005. How can i start it ? It's there any exist solutions,...
Hello, I'm doing WHQL certification on WinXP SP2 for Passthru driver, compiled with NDIS version 5.0. The test 2c_PerformanceBlast crashes the system, with the...
If Packet it the original packet being sent by the higher-level protocol and MyPacket is a packet (perhaps a "fresh packet" wrapper), then your code should be:...
Ok. That looks OK. The MS sample uses terminology that leads to confusion. This line is actually correct, but the names should be changed to insure that no one...
I am new to WHQL certification and need to get my driver signed in very short time. I have looked for information on MS site but it all looks confusing for me:...
July 27, 2006 - I still haven't mastered all the details of application and driver installation on Windows Vista. However, I have put together a new Rawether...