SoultakerPT Posted May 24, 2010 Share Posted May 24, 2010 Hello and greetings from Portugal,I need some help with this one.What I'm intended to do is:- Create an image using MDT 2010- Publish the image on WDS Server- Use that image in different machine modelsSo, what I've done was, insert all drivers I needed on MDT, then generated the image on one mahcine and then publish it on WDS and applied it on another machine.The problem here is that the drivers (video in this case) are not installed. Like if they aren't on the WIM file on the first place.Can someone please help me on what I'm doing wrong?Best Regards,Diogo Sousa Link to comment Share on other sites More sharing options...
grabben Posted May 24, 2010 Share Posted May 24, 2010 Not every driver can be integrated appearently..why i dont know..Dism /mount-wim /wimfile:install.wim /index:1-5 /mountdir:mountDism /image:mount /add-driver /Driver:*.inf or mainfolder containing subfolders with drivers /recursedism /unmount-wim /mountdir:mount /commitFull command to integrate drivers.Is every other driver integrated ? Link to comment Share on other sites More sharing options...
SoultakerPT Posted May 24, 2010 Author Share Posted May 24, 2010 Hi Grabben and thanks for the quick reply!My doubt here is if there is anyway to do this automatically.Like, on the task sequence or in some option to integrate all drivers on the machine.Best Regards,Soultaker Link to comment Share on other sites More sharing options...
grabben Posted May 24, 2010 Share Posted May 24, 2010 Hi Grabben and thanks for the quick reply!My doubt here is if there is anyway to do this automatically.Like, on the task sequence or in some option to integrate all drivers on the machine.Best Regards,SoultakerIntegrate drivers to the machine ? well not through setup or so beacuse setup installs drivers for the hardware it finds and nothing more.But to integrate loads of drivers to the image is more then possible. Link to comment Share on other sites More sharing options...
arwidmark Posted May 24, 2010 Share Posted May 24, 2010 (edited) If you import the video driver into the MDT driver repository MDT will do the driver injection automatically during deployment, you don't need to store in the image at all...Please note that many video drivers are larger than the 32 MB scratchspace buffer WinPE is using when unpacking the driver. I recommend you to set it to 128 MB for your boot images (done in the deployment share properties.MDT has many different methods that you can inject drivers with, based on pnpid detection, based on models etc... You can read more here: MDT 2010 Lite Touch Driver Managementhttp://www.deployvista.com/Home/tabid/36/EntryID/132/language/sv-SE/Default.aspx Edited May 24, 2010 by arwidmark Link to comment Share on other sites More sharing options...
SoultakerPT Posted May 24, 2010 Author Share Posted May 24, 2010 Ok, I believe I'm not explaining myself the right way.What I would like was to create an image on one machine.Then, I deploy the image on another machine, with a different video card.I would like to automatically install the driver from that new machine.Hope this would help myself to explain better!Best Regards,Soultaker Link to comment Share on other sites More sharing options...
grabben Posted May 24, 2010 Share Posted May 24, 2010 Ok, I believe I'm not explaining myself the right way.What I would like was to create an image on one machine.Then, I deploy the image on another machine, with a different video card.I would like to automatically install the driver from that new machine.Hope this would help myself to explain better!Best Regards,SoultakerYou did Im not sure if thats possible beacuse if you capture a image from one computer its specific for that computer..Your better off integrating drivers to the wim instead i think. Link to comment Share on other sites More sharing options...
SoultakerPT Posted May 24, 2010 Author Share Posted May 24, 2010 Ok, so the way to do it is to generate the image and than integrate drivers, right? Link to comment Share on other sites More sharing options...
grabben Posted May 24, 2010 Share Posted May 24, 2010 Ok, so the way to do it is to generate the image and than integrate drivers, right?Yea its better to mount the image edition you want (home basic, professional etc).Use the dism commands i gave u in my first post.. Link to comment Share on other sites More sharing options...
bfc_xxx Posted May 25, 2010 Share Posted May 25, 2010 Ok, so the way to do it is to generate the image and than integrate drivers, right?Yea its better to mount the image edition you want (home basic, professional etc).Use the dism commands i gave u in my first post..Correct me if I am wrong but he has to expand (at least for nvidia) the drivers before using "your" dism commands. Link to comment Share on other sites More sharing options...
grabben Posted May 25, 2010 Share Posted May 25, 2010 Ok, so the way to do it is to generate the image and than integrate drivers, right?Yea its better to mount the image edition you want (home basic, professional etc).Use the dism commands i gave u in my first post..Correct me if I am wrong but he has to expand (at least for nvidia) the drivers before using "your" dism commands.Im not sure, but that could be the problem of why dism cant integrate drivers so yea do that.. Link to comment Share on other sites More sharing options...
davidville Posted May 30, 2010 Share Posted May 30, 2010 I've found that using $WinPEdriver$ in the root directory works.David Link to comment Share on other sites More sharing options...
bfc_xxx Posted May 30, 2010 Share Posted May 30, 2010 I've found that using $WinPEdriver$ in the root directory works.DavidCan you give an example? eg how to integrate latest NVIDIA and ATI drivers?? Link to comment Share on other sites More sharing options...
cluberti Posted May 30, 2010 Share Posted May 30, 2010 ATI drivers are easy, because once you extract the package the drivers are in flat-format in a WDM subfolder - add this folder to the workbench, and things work (you don't get the Control Panel, but I argue that's a good thing). Nvidia drivers are harder because they require not only the .INF files, but that the PhysX MSI file is installed (and potentially the NvCplSetupEng.exe file run as well). I find it best to use WMI in WinPE to determine the video card installed (Win32_VideoController class, PnPDeviceID and VideoProcessor properties should be sufficient to tell you what's in the box), and script installation of the Nvidia drivers after Windows is installed as part of the task sequence. It's the only way I've gotten it to work 100%. Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now