Difference between revisions of "DpInst"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
Line 1: Line 1:
Driver installer using Dpinst.exe more info about dpinst.exe can be found [http://www.google.ch/url?sa=t&source=web&cd=1&ved=0CBQQFjAA&url=http%3A%2F%2Fmsdn.microsoft.com%2Fen-us%2Flibrary%2Fff544842(VS.85).aspx&rct=j&q=dpinst&ei=vSCOTOjtLMTIswaMqJHNAQ&usg=AFQjCNEm-HTPdlwzZEcZ7rFEcThDHNgFtw&cad=rja here]:
+
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
  
 
<source lang="xml">
 
<source lang="xml">
Line 20: Line 20:
  
  
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 13:08, 13 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="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.