i am trying to install an Ndis IM driver on WinXP using snetcfg sample.
the installation succeeds on 2k but on WinXP it prompts for "Files
Needed" dialog box with my driver name. i don't want this dialog box to
appear. how to do it?

i traced thru the snetcfg code and it appears that the "Files needed"
dialog box pops up on the call to INetCfgClassSetup->Install function.
what wrong am i doing.

...Mani

Re: NDIS IM Installation pops up a dialog box by Arkady

Arkady
Fri Jan 14 06:09:17 CST 2005

Do you have your IM signed ?
Arkady

"Bajamani" <bajamani@hotmail.com> wrote in message
news:1105696887.504497.39600@z14g2000cwz.googlegroups.com...
> i am trying to install an Ndis IM driver on WinXP using snetcfg sample.
> the installation succeeds on 2k but on WinXP it prompts for "Files
> Needed" dialog box with my driver name. i don't want this dialog box to
> appear. how to do it?
>
> i traced thru the snetcfg code and it appears that the "Files needed"
> dialog box pops up on the call to INetCfgClassSetup->Install function.
> what wrong am i doing.
>
> ...Mani
>



Re: NDIS IM Installation pops up a dialog box by Jeff

Jeff
Fri Jan 14 07:17:13 CST 2005

"Bajamani" <bajamani@hotmail.com> wrote in message
news:1105696887.504497.39600@z14g2000cwz.googlegroups.com...
>i am trying to install an Ndis IM driver on WinXP using snetcfg sample.
> the installation succeeds on 2k but on WinXP it prompts for "Files
> Needed" dialog box with my driver name. i don't want this dialog box to
> appear. how to do it?
>
> i traced thru the snetcfg code and it appears that the "Files needed"
> dialog box pops up on the call to INetCfgClassSetup->Install function.
> what wrong am i doing.

My guess is that your INF file(s) need a bit of tweaking so that the Setup
API knows where your driver file is.



Re: NDIS IM Installation pops up a dialog box by Bajamani

Bajamani
Sat Jan 15 00:15:50 CST 2005

Exactly..........

I had wrong name for CopyInf in protocol inf.....
The problem is solved.

Thank you.
...Mani