MDT Deployment Failure during unattend.xml

I am attempting to deploy Windows 10 Education on a number of machines using WDS(for PXE) and MDT2013 Update 2 installed on Windows Server 2012 R2. The setup is failing right after the install os step, when dism is applying unattend.xml The error message is Failure(5627): -2147467259 0x80004005 Anyone can help with this issue? Thank … Read more

MDT 2013 “Windows Components missing”

i have an environment running MDT 2013 and i have multiple different models for (dell/lenovo) desktops and laptops. i captured an image and it runs well on all the computers except a specific lenovo models which are (L440, L450, T440, T450) i downloaded the SCCM package and injected the drivers into the Out of box … Read more

Injecting Updates via Dism gives error 50 all the time

I am running Win 2012 R2 with MDT 2013, WDS & WSUS. trying to auto inject updates from wsus update share into my OS Wim (win 10 tech preview x64) for deployment. using this script $UpdatesPath = “\\192.168.30.204\wsus\WsusContent” $MountPath = “C:\SCRIPTSV2\mounter1” $WimFile = “C:\SCRIPTSV2\TestOS2\Windows 10 Pro Technical Preview x64\sources\install.wim” DISM /Mount-Wim /WimFile:$WimFile /index:1 /Mountdir:$MountPath $UpdateArray … Read more

Better way to conditionally call multiple webservices from MDT CustomSettings.ini?

I’ve got an MDT deployment which does things a little differently based on the network location. From one of the locations, I have two webservices I need to call. My initial failed attempt was: [Settings] Priority=DefaultGateway [DefaultGateway] 10.0.0.1=LOCATION_A 10.100.0.1=LOCATION_B [LOCATION_A] Subsection=WebService1 Subsection=WebService2 [WebService1] WebService=http://contoso.com/webservice1 [WebService2] WebService=http://contoso.com/webservice2 I quickly discovered this doesn’t work, because you can … Read more

How to manually select a specific disk in the UDI Wizard when using MDT 2013?

Is there a way to manually select a disk or partition as part of the MDT Deployment UDI Wizard rather than MDT automatically selecting one. I know you can select one in the Task Sequence but I’m specifically looking for a way to do this in the wizard. Thanks for any help you can provide! … Read more

Install MDT application based on Make/Model using SQL Database

I am trying to install applications using Deployment Toolkit (MDT) 2013 Update 2, based on the specific Manufacturer and Model of the client computer. But the applications are not installing. I have installed SQL Express using the default settings (which creates a database called SQLEXPRESS) I have installed SQL Management Studio and given access rights … Read more