Difference between revisions of "DpInst"
From WPKG | Open Source Software Deployment and Distribution
(Created page with 'Driver installer using Dpinst.exe <source lang="xml"> <?xml version="1.0" encoding="UTF-8"?> <packages> <package id="dpinst" name="DpInst driver installer" rev…') |
|||
Line 18: | Line 18: | ||
</packages> | </packages> | ||
</source> | </source> | ||
+ | |||
+ | |||
+ | ensure that you put only driver related files in to the driver repo directory (for example .inf .sys) it will install any driver found in driverrepo directory, however subdirs are not supported at the moment. |
Revision as of 13:00, 13 September 2010
Driver installer using Dpinst.exe
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package id="dpinst"
name="DpInst driver installer"
revision="1"
execute="once"
reboot="false"
priority="0">
<install cmd='pathto\dpinst.exe /S /PATH \\server\driverrepo\' >
</install>
</package>
</packages>
ensure that you put only driver related files in to the driver repo directory (for example .inf .sys) it will install any driver found in driverrepo directory, however subdirs are not supported at the moment.