Depends on the driver, if the driver uses a setup than you should be able to use this inconjunction with silent switches. If the driver just includes the base files for plug-in play than all you need to do is have the files copied to the machine for example C:\Windows\Drivers\DriverN
HKLM\Software\Microsoft\Wi
DevicePath
Just remember to add a semicolon (;) between paths
For the latter I recommend packaging it with InnoSetup www.jrsoftware.org basically you can tell it to place the drivers into {win}\Drivers\DriverName
Then in the registry you can use the code {olddata};\{win}\Drivers\D
This will append the {win}\Drivers\DriverName to the value that is already there.
Once compiled you can use setup.exe /silent to deploy this will show a progress bar during setup it should also prompt the user to restart the computer at the end which is required before the new hardware will be detected.
I've used this method before and it works well, especially for adding webcam drivers etc.. to machines.
Hope that helps.
Cheers
Main Topics
Browse All Topics





by: museudfPosted on 2008-09-16 at 03:24:09ID: 22486718
anyone!!