Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista Drivers > RE: how to install signed drivers?

Reply
Thread Tools Display Modes

RE: how to install signed drivers?

 
 
Bryan S. Burgin [MSFT]
Guest
Posts: n/a

 
      08-28-2003

Copy your package elsewhere (c:\Program Files\My Company\My Product...) and
then use SetupCopyOEMInf to move the INF into the INF folder and create the
precompiled INF (PNF). Part of the SetupCopyOEMInf call records the
location of your package and will install it from there.

Bryan S. Burgin


This posting is provided "AS IS" with no warranties, and confers no rights.
 
Reply With Quote
 
 
 
 
harishv
Guest
Posts: n/a

 
      08-28-2003
i have tried using SetupCopyOEMInf but i get an error
saying..

Error in Setupapi
Missing Entry: SetupCopyOEMInf

dont know if this is the right place to post this. but
here is what i am using in the InstallShield script..

szPostPath = "1";
szCopyDeleteSource = "1";
szNoBuffer = "0";

szCmd = "rundll32.exe";
szArg = "setupapi,SetupCopyOemInf " + svSrcInfDir + " "
+ szPostPath + szCopyDeleteSource + " " + szNoBuffer + " "
+ " ";

if ( LaunchAppAndWait(szCmd, szArg, WAIT) < 0 ) then
MessageBox ("Failed to copy the inf file!!" +
svSrcInfDir, SEVERE);
endif;

any ideas?

thanx
HV
>-----Original Message-----
>
>Copy your package elsewhere (c:\Program Files\My

Company\My Product...) and
>then use SetupCopyOEMInf to move the INF into the INF

folder and create the
>precompiled INF (PNF). Part of the SetupCopyOEMInf call

records the
>location of your package and will install it from there.
>
>Bryan S. Burgin
>
>
>This posting is provided "AS IS" with no warranties, and

confers no rights.
 
Reply With Quote
 
Bryan S. Burgin [MSFT]
Guest
Posts: n/a

 
      08-29-2003
Using dumpbin: SetupCopyOEMInf is exported by setupapi.dll as
SetupCopyOEMInfA (for the ASCII version) and SetupCopyOEMInfW (for the wide
version). You probably want the 'A' version. As far as the other
parameters, I don't know.

Bryan S. Burgin


This posting is provided "AS IS" with no warranties, and confers no rights.
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Disable the need for Signed Drivers on X64 Vista? Bhozar Windows Vista Security 2 10-10-2007 11:41 AM
UAC / Signed Drivers / etc. are a joke :( Ryan Windows Vista Security 19 09-24-2006 09:23 AM
I can't make test signed drivers work in 64-bit Vista Ladislav Zezula Windows Vista Security 0 07-11-2006 11:58 AM
how to turn of digitally signed signatures for drivers hunter27 Windows Vista Hardware 0 06-25-2006 09:33 PM
Signed drivers behaving badly? Alex Pranke Windows Vista Drivers 4 09-01-2003 04:47 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59