how to make wdf’s driver to installation package? thank you
Well, the big tickets items are that you need your driver(s), and inf and
the kmdf/umdf coinstallers. After that, it all depends on what you want to
do, but signing will perhaps be involved.
Unfortunately, you’re going to need to read the setup docs in the WDK.
Good luck,
mm
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of zhonghong200@163.com
Sent: Wednesday, August 25, 2010 11:17 PM
To: Windows System Software Devs Interest List
Subject: [ntdev] how to make wdf’s driver to installation package
how to make wdf’s driver to installation package? thank you
NTDEV is sponsored by OSR
For our schedule of WDF, WDM, debugging and other seminars visit:
http://www.osr.com/seminars
To unsubscribe, visit the List Server section of OSR Online at
http://www.osronline.com/page.cfm?name=ListServer
i want to make driver to .exe ,but don’t know how to do it ,thank you
>i want to make driver to .exe ,but don’t know how to do it ,thank you
this is not the original meaning of driver package.
in your side, make the sys file as a resource of you installation exe application
NTDEV is sponsored by OSR
For our schedule of WDF, WDM, debugging and other seminars visit:
http://www.osr.com/seminars
To unsubscribe, visit the List Server section of OSR Online at http://www.osronline.com/page.cfm?name=ListServer
>i want to make driver to .exe ,but don’t know how to do it ,thank you
The easiest way to to use whatever installer programs you are familiar with
(nsis, wix, advanced installer etc) and use dpinst (
http://msdn.microsoft.com/en-us/library/ff544842(VS.85).aspx) to do the
heavy lifting for you.
Just copy all the components into one place (sys, inf, cat, dpinst.exe etc)
and get your installer to call dpinst with the silent flag and wait for the
exit code.
On Thu, Aug 26, 2010 at 9:26 PM, wrote:
> i want to make driver to .exe ,but don’t know how to do it ,thank you
>
> —
> NTDEV is sponsored by OSR
>
> For our schedule of WDF, WDM, debugging and other seminars visit:
> http://www.osr.com/seminars
>
> To unsubscribe, visit the List Server section of OSR Online at
> http://www.osronline.com/page.cfm?name=ListServer
>
Daniel Newton wrote:
>i want to make driver to .exe ,but don’t know how to do it ,thank you
The easiest way to to use whatever installer programs you are familiar
with (nsis, wix, advanced installer etc) and use dpinst
(http://msdn.microsoft.com/en-us/library/ff544842(VS.85).aspx) to
do the heavy lifting for you.Just copy all the components into one place (sys, inf, cat, dpinst.exe
etc) and get your installer to call dpinst with the silent flag and
wait for the exit code.
Yes – this is exactly what I do. A simple NSIS script copies to a
location in Program Files, and from there I launch dpinst. It works
surprisingly well.
–
Tim Roberts, xxxxx@probo.com
Providenza & Boekelheide, Inc.
i use dpinst.exe to installer ,but error with KmdfSamples.cat’ not found, who can help me ? thanks
I only use dpinst.exe ,and not use (nsis, wix, advanced installer etc)
i find .inf CatalogFile = KmdfSamples.cat,but i search it ,and not find kmdfsamples.cat.
try ‘inf2cat’ see the various documentation on creating install packages.
Mark Roddy
On Sun, Aug 29, 2010 at 11:24 AM, wrote:
> i find .inf CatalogFile = KmdfSamples.cat,but i search it ,and not find
> kmdfsamples.cat.
>
>
> —
> NTDEV is sponsored by OSR
>
> For our schedule of WDF, WDM, debugging and other seminars visit:
> http://www.osr.com/seminars
>
> To unsubscribe, visit the List Server section of OSR Online at
> http://www.osronline.com/page.cfm?name=ListServer
>
> in your side, make the sys file as a resource of you installation exe application
For WDF, you will also need an .inf to trigger the coinstaller action.
–
Maxim S. Shatskih
Windows DDK MVP
xxxxx@storagecraft.com
http://www.storagecraft.com
zhonghong200@163.com wrote:
i use dpinst.exe to installer ,but error with KmdfSamples.cat’ not found, who can help me ? thanks
…
i find .inf CatalogFile = KmdfSamples.cat,but i search it ,and not find kmdfsamples.cat.
You need to help yourself here. You have to do more reading about INF
files and device installation, and then pause for a little
self-reflection to understand how INF files work. You should not have
had to ask this question.
–
Tim Roberts, xxxxx@probo.com
Providenza & Boekelheide, Inc.