Good Day

I was wondering where to get information on Virtual devices on windows 2K/XP

I want to make a driver that detects if any of our products are connected (Serial/USB) and then acts as a generic PCSC driver to any of these devices. Our clients do not want to layer the driver atop the HID/Serial driver because they also want direct access to the hardware from user mode.. Can anybody help me with this

With Best Regards
StreaX

Re: Virtual Device Driver Basics by Doron

Doron
Tue Jun 01 09:16:35 CDT 2004

as an aside, direct access to hw in user mode means that your device
provides no security to the machine whatsoever. your hardware is now
suscetible to a broader range of attack.

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.


"StreaX" <anonymous@discussions.microsoft.com> wrote in message
news:4323B4A0-1091-44F3-89B7-F8DC2DDF2F32@microsoft.com...
> Good Day,
>
> I was wondering where to get information on Virtual devices on windows
2K/XP.
>
> I want to make a driver that detects if any of our products are connected
(Serial/USB) and then acts as a generic PCSC driver to any of these devices.
Our clients do not want to layer the driver atop the HID/Serial driver
because they also want direct access to the hardware from user mode.. Can
anybody help me with this?
>
> With Best Regards,
> StreaX



Re: Virtual Device Driver Basics by anonymous

anonymous
Wed Jun 02 00:21:03 CDT 2004

Actually this device is really intended to be used from USER mode. commands are sent through this device (Via serial or HID) and the hadrware sends back a response based on the command. but currently a customer requres us to make a PC/SC compatible driver for these devices. Actually all logic for handling Smart Cards are programmed in the Hardware device and all i need to do is make a dummy driver to convert PCSC commands to Our Commands. Another thing they want is the capability to turn OFF/On The PCSC Driver at will. Is this at all possible

I wish there is a way to make a PCSC driver in user mode....