Hi

How can I change WinCE device USB description if I want to add it with more
detailed info.

I know we can change platform.reg USB function default driver keys

"idProduct"=dword:yyyy
"idVendor"=dword:xxxx

but how can I make usb description like "USB\Vid_xxxx&Pid_yyyy&MI_00" for PC
Windows driver ? Where to add the extra info "&MI_00" ?

Thank you .

Re: How to add extra PID info in WinCE USB description ? by Luca

Luca
Wed Jul 30 02:57:20 PDT 2008

I do not exactly what MI stands for, anyway the USB Function driver
framework cares about the following registry entries:
TEXT("DefaultPrefi")
TEXT("MaxPacketSize")
TEXT("VendorID")
TEXT("ProductID")
TEXT("BCDDevice")
TEXT("ManufacturerString")
TEXT("ProductString")
TEXT("SerialString")
TEXT("PowerConsumption")
TEXT("Attributes")

HTH

--

Luca Calligaris
www.eurotech.it

"Kid" <Kid@discussions.microsoft.com> ha scritto nel messaggio
news:7BC92FE5-0671-41C8-8497-6653185B4F41@microsoft.com...
> Hi
>
> How can I change WinCE device USB description if I want to add it with
> more
> detailed info.
>
> I know we can change platform.reg USB function default driver keys
>
> "idProduct"=dword:yyyy
> "idVendor"=dword:xxxx
>
> but how can I make usb description like "USB\Vid_xxxx&Pid_yyyy&MI_00" for
> PC
> Windows driver ? Where to add the extra info "&MI_00" ?
>
> Thank you .



Re: How to add extra PID info in WinCE USB description ? by Kid

Kid
Wed Jul 30 03:17:01 PDT 2008

Hi Luca

"&MI_00" is vendor definied information .

PC driver use "USB\Vid_xxxx&Pid_yyyy&MI_00" for inf file and Device Manager
driver installation .


"Luca Calligaris" wrote:

> I do not exactly what MI stands for, anyway the USB Function driver
> framework cares about the following registry entries:
> TEXT("DefaultPrefi")
> TEXT("MaxPacketSize")
> TEXT("VendorID")
> TEXT("ProductID")
> TEXT("BCDDevice")
> TEXT("ManufacturerString")
> TEXT("ProductString")
> TEXT("SerialString")
> TEXT("PowerConsumption")
> TEXT("Attributes")
>
> HTH
>
> --
>
> Luca Calligaris
> www.eurotech.it
>
> "Kid" <Kid@discussions.microsoft.com> ha scritto nel messaggio
> news:7BC92FE5-0671-41C8-8497-6653185B4F41@microsoft.com...
> > Hi
> >
> > How can I change WinCE device USB description if I want to add it with
> > more
> > detailed info.
> >
> > I know we can change platform.reg USB function default driver keys
> >
> > "idProduct"=dword:yyyy
> > "idVendor"=dword:xxxx
> >
> > but how can I make usb description like "USB\Vid_xxxx&Pid_yyyy&MI_00" for
> > PC
> > Windows driver ? Where to add the extra info "&MI_00" ?
> >
> > Thank you .
>
>
>

Re: How to add extra PID info in WinCE USB description ? by Rob

Rob
Wed Jul 30 05:43:01 PDT 2008

do you have differrent devices that have the same product ID ?
Just curious why you want to redefine device-identification....
Rob.


"Kid" wrote:

> Hi Luca
>
> "&MI_00" is vendor definied information .
>
> PC driver use "USB\Vid_xxxx&Pid_yyyy&MI_00" for inf file and Device Manager
> driver installation .
>
>
> "Luca Calligaris" wrote:
>
> > I do not exactly what MI stands for, anyway the USB Function driver
> > framework cares about the following registry entries:
> > TEXT("DefaultPrefi")
> > TEXT("MaxPacketSize")
> > TEXT("VendorID")
> > TEXT("ProductID")
> > TEXT("BCDDevice")
> > TEXT("ManufacturerString")
> > TEXT("ProductString")
> > TEXT("SerialString")
> > TEXT("PowerConsumption")
> > TEXT("Attributes")
> >
> > HTH
> >
> > --
> >
> > Luca Calligaris
> > www.eurotech.it
> >
> > "Kid" <Kid@discussions.microsoft.com> ha scritto nel messaggio
> > news:7BC92FE5-0671-41C8-8497-6653185B4F41@microsoft.com...
> > > Hi
> > >
> > > How can I change WinCE device USB description if I want to add it with
> > > more
> > > detailed info.
> > >
> > > I know we can change platform.reg USB function default driver keys
> > >
> > > "idProduct"=dword:yyyy
> > > "idVendor"=dword:xxxx
> > >
> > > but how can I make usb description like "USB\Vid_xxxx&Pid_yyyy&MI_00" for
> > > PC
> > > Windows driver ? Where to add the extra info "&MI_00" ?
> > >
> > > Thank you .
> >
> >
> >

Re: How to add extra PID info in WinCE USB description ? by Luca

Luca
Wed Jul 30 06:15:00 PDT 2008

The MI suffix in the .INF file is used for composite USB function device:
maybe you can find some info about the registry settings here
http://msdn.microsoft.com/en-us/library/aa910127.aspx

HTH

--

Luca Calligaris
www.eurotech.it

"Kid" <Kid@discussions.microsoft.com> ha scritto nel messaggio
news:286F26F8-E755-4D2B-AB94-32F30605E81A@microsoft.com...
> Hi Luca
>
> "&MI_00" is vendor definied information .
>
> PC driver use "USB\Vid_xxxx&Pid_yyyy&MI_00" for inf file and Device
> Manager
> driver installation .
>
>
> "Luca Calligaris" wrote:
>
>> I do not exactly what MI stands for, anyway the USB Function driver
>> framework cares about the following registry entries:
>> TEXT("DefaultPrefi")
>> TEXT("MaxPacketSize")
>> TEXT("VendorID")
>> TEXT("ProductID")
>> TEXT("BCDDevice")
>> TEXT("ManufacturerString")
>> TEXT("ProductString")
>> TEXT("SerialString")
>> TEXT("PowerConsumption")
>> TEXT("Attributes")
>>
>> HTH
>>
>> --
>>
>> Luca Calligaris
>> www.eurotech.it
>>
>> "Kid" <Kid@discussions.microsoft.com> ha scritto nel messaggio
>> news:7BC92FE5-0671-41C8-8497-6653185B4F41@microsoft.com...
>> > Hi
>> >
>> > How can I change WinCE device USB description if I want to add it with
>> > more
>> > detailed info.
>> >
>> > I know we can change platform.reg USB function default driver keys
>> >
>> > "idProduct"=dword:yyyy
>> > "idVendor"=dword:xxxx
>> >
>> > but how can I make usb description like "USB\Vid_xxxx&Pid_yyyy&MI_00"
>> > for
>> > PC
>> > Windows driver ? Where to add the extra info "&MI_00" ?
>> >
>> > Thank you .
>>
>>
>>



Re: How to add extra PID info in WinCE USB description ? by Bruce

Bruce
Wed Jul 30 06:22:25 PDT 2008

You can look in the drivers themselves to see where this is set. I suspect
that they are not exposed in the registry and that you will need to modify
the code to change them.

--
Bruce Eitman (eMVP)
Senior Engineer
Bruce.Eitman AT EuroTech DOT com
My BLOG http://geekswithblogs.net/bruceeitman

EuroTech Inc.
www.EuroTech.com

"Kid" <Kid@discussions.microsoft.com> wrote in message
news:286F26F8-E755-4D2B-AB94-32F30605E81A@microsoft.com...
> Hi Luca
>
> "&MI_00" is vendor definied information .
>
> PC driver use "USB\Vid_xxxx&Pid_yyyy&MI_00" for inf file and Device
> Manager
> driver installation .
>
>
> "Luca Calligaris" wrote:
>
>> I do not exactly what MI stands for, anyway the USB Function driver
>> framework cares about the following registry entries:
>> TEXT("DefaultPrefi")
>> TEXT("MaxPacketSize")
>> TEXT("VendorID")
>> TEXT("ProductID")
>> TEXT("BCDDevice")
>> TEXT("ManufacturerString")
>> TEXT("ProductString")
>> TEXT("SerialString")
>> TEXT("PowerConsumption")
>> TEXT("Attributes")
>>
>> HTH
>>
>> --
>>
>> Luca Calligaris
>> www.eurotech.it
>>
>> "Kid" <Kid@discussions.microsoft.com> ha scritto nel messaggio
>> news:7BC92FE5-0671-41C8-8497-6653185B4F41@microsoft.com...
>> > Hi
>> >
>> > How can I change WinCE device USB description if I want to add it with
>> > more
>> > detailed info.
>> >
>> > I know we can change platform.reg USB function default driver keys
>> >
>> > "idProduct"=dword:yyyy
>> > "idVendor"=dword:xxxx
>> >
>> > but how can I make usb description like "USB\Vid_xxxx&Pid_yyyy&MI_00"
>> > for
>> > PC
>> > Windows driver ? Where to add the extra info "&MI_00" ?
>> >
>> > Thank you .
>>
>>
>>