Difference between revisions of "DpInst"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
Line 6: Line 6:
 
<package id="dpinst"
 
<package id="dpinst"
 
         name="DpInst driver installer"
 
         name="DpInst driver installer"
         revision="1"
+
         revision="3"
 
         execute="once"
 
         execute="once"
 
         reboot="false"
 
         reboot="false"
Line 12: Line 12:
 
 
  
   <install cmd='pathto\dpinst.exe /S /PATH \\server\driverrepo\' >
+
<install cmd='%software%\tools\driversigning\DriverSigning\DriverSigning-Off.exe' />
  </install>
+
   <!-- temporary disable driver signing check -->
 +
 
 +
<install cmd='pathto\dpinst.exe /S /PATH \\server\driverrepo\' >
 +
<!-- install drivers and allow any exit code as -->
 +
 
 +
<install cmd='%software%\tools\driversigning\DriverSigning\DriverSigning-On.exe' />
 +
<!-- re-enable driver signing -->
 
 
 
</package>
 
</package>
Line 19: Line 25:
 
</source>
 
</source>
  
 +
 +
to get DriverSigning-Off and -On .exe check [[OpenVPN]]
  
 
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.
 
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.
 +
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Revision as of 07:27, 16 September 2010

Driver installer using Dpinst.exe more info about dpinst.exe can be found here: http://msdn.microsoft.com/en-us/library/ff544842%28VS.85%29.aspx

<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package id="dpinst"
         name="DpInst driver installer"
         revision="3"
         execute="once"
         reboot="false"
         priority="0">
	

<install cmd='%software%\tools\driversigning\DriverSigning\DriverSigning-Off.exe' />
   <!-- temporary disable driver signing check -->

<install cmd='pathto\dpinst.exe /S /PATH \\server\driverrepo\' >
	<!-- install drivers and allow any exit code as -->
	  
<install cmd='%software%\tools\driversigning\DriverSigning\DriverSigning-On.exe' />
	<!-- re-enable driver signing -->
		
</package>
</packages>


to get DriverSigning-Off and -On .exe check OpenVPN

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.