another problem with INF file

Hi,
I made my INF file for a PCI device, but I have some problem with it.

When W2k detects my PCI device, it asks for then INF file and I give it the
one I made. At the end of the installation process, I go this error:

The installation failed because a function driver was not specified for this
device instance.

What this error means? What part of my INF file is missing?

Thanks,
Michael

Michael Grimard
Concepteur Logiciel/Software Designer
MAX Technologies
xxxxx@maxt.com
tel:(450)443-3332 ext.524


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

Hi,

What this error means? What part of my INF file is missing?

nice question, show me your inf file and maybe I can say (or another
guy) what is wrong.

elli


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

You may be missing the DDInstall.Services section from you INF file or one
of the sections that it refers to but without seeing your INF file its hard
to know for sure.

  • Steve -

-----Original Message-----
From: Michael Grimard [mailto:xxxxx@maxt.com]
Sent: Thursday, November 01, 2001 4:37 PM
To: NT Developers Interest List
Subject: [ntdev] another problem with INF file

Hi,
I made my INF file for a PCI device, but I have some
problem with it.

When W2k detects my PCI device, it asks for then INF file and
I give it the
one I made. At the end of the installation process, I go this error:

The installation failed because a function driver was not
specified for this
device instance.

What this error means? What part of my INF file is missing?

Thanks,
Michael

Michael Grimard
Concepteur Logiciel/Software Designer
MAX Technologies
xxxxx@maxt.com
tel:(450)443-3332 ext.524


You are currently subscribed to ntdev as: xxxxx@cognex.com
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

Thanks, I found the problem…

It seems that when you do a reinstall dirver in W2K, it doesn’t reinstall
it… It keeps the one it already has, that was not working…

Michael

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com]On Behalf Of Steve Whitman
Sent: Friday, November 02, 2001 7:37 AM
To: NT Developers Interest List
Subject: [ntdev] RE: another problem with INF file

You may be missing the DDInstall.Services section from you INF file or one
of the sections that it refers to but without seeing your INF file its hard
to know for sure.

  • Steve -

-----Original Message-----
From: Michael Grimard [mailto:xxxxx@maxt.com]
Sent: Thursday, November 01, 2001 4:37 PM
To: NT Developers Interest List
Subject: [ntdev] another problem with INF file

Hi,
I made my INF file for a PCI device, but I have some
problem with it.

When W2k detects my PCI device, it asks for then INF file and
I give it the
one I made. At the end of the installation process, I go this error:

The installation failed because a function driver was not
specified for this
device instance.

What this error means? What part of my INF file is missing?

Thanks,
Michael

Michael Grimard
Concepteur Logiciel/Software Designer
MAX Technologies
xxxxx@maxt.com
tel:(450)443-3332 ext.524


You are currently subscribed to ntdev as: xxxxx@cognex.com
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: xxxxx@maxt.com
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

Hi All,

Can I use same ‘inf’ file to install my WDM device driver
on Windows 2000 and as well as on WIndows 98 SE?

Thanks,
Nitin


Talk More, Pay Less with Net2Phone Direct(R), up to 1500 minutes free!

http://www.net2phone.com/cgi-bin/link.cgi?143


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

Nitin,

You can. Windows 9x/ME INFs differ from Windows 2000/XP INFs slightly.
2K/XP INFs contain [Services] sections to define ServiceType,
ServiceBinary, etc. Windows 9x contains entries like “DeviceVxDs” (even
if your binary is a 2K/.SYS driver) and “DevLoader” entries.

Where a section needs to differ, you can nominate one section to be used
in 2000 installations and another section by adding .NT (or .NTx86) to
the end of the section name for NT platforms – the section without any
platform designation will be Windows 9x by default.

Search the Windows XP \inf folder for “.NT” and there will be a
number of examples. If your device is a networking device, you can
further differentiate between Windows 9x and Windows ME (using
MillenniumPreferred and .ME) and between Windows 2000 and XP (using
5.1). See KB Q280063 for more information.

Also, if your binaries differ, you can have multiple .CAT files using
the same extensions, as in:

CatalogFile=“mydriver98.cat”
CatalogFile.nt=“mydrivernt.cat”

Bryan S. Burgin
xxxxx@microsoft.com

This posting is provided “AS IS” with no warranties, and confers no
rights. You assume all risk for your use. (c) 2001 Microsoft
Corporation. All rights reserved.

-----Original Message-----
From: Nitin Sharma [mailto:xxxxx@email.com]
Sent: Sunday, November 04, 2001 4:01 AM
To: NT Developers Interest List
Subject: [ntdev] Inf file

Hi All,

Can I use same ‘inf’ file to install my WDM device driver
on Windows 2000 and as well as on WIndows 98 SE?

Thanks,
Nitin


_______________________________________________

Talk More, Pay Less with Net2Phone Direct(R), up to 1500 minutes free!

http://www.net2phone.com/cgi-bin/link.cgi?143


You are currently subscribed to ntdev as: xxxxx@microsoft.com
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com