Category Archives: MDT2013

Setting the Wallpaper and Lockscreen in Windows 10

By | December 4, 2016
Share

Finally! I found a failsafe way to set a desired image to both the default wallpaper and lockscreen in Windows 10. Place a Wallpaper.jpg into your MDT “scripts” folder, add Powershell support to your WinPE (you will need to also add .NET support).  Then use this command line after applying the image: powershell.exe -ExecutionPolicy “ByPass”… Read More »

Display the WIM filename during Image Apply step Dynamically

By | November 30, 2016
Share

Since there is no MDT built-in variable assigned with just the wim name, i had to create a seperate step to create the variable “OSDImageName”, which i  then used in my standard image apply step. Here is what the Task Sequence looks like: Step Name Text: Expanding %OSDImageName% (%ImageSize%) to %OSDisk%\… And here is how… Read More »

SMSTS log file should be copied at end of EVERY MDT Task Sequence!

By | November 29, 2016
Share

MDT has a fairly large shot coming. It doesn’t copy one of the best log files that is used to troubleshoot Task Sequence issues, smsts.log.  I hunted down the log file and now copy it using a custom step at the end of all of my Task Sequences. /BG  

Add MDT Selection Profiles for each Out-of-Box Driver Folder using a PowerShell Script

By | October 23, 2016
Share

MDT Task Sequence’s Inject driver steps do not support specifying folders,  so Selection Profiles are the defacto method for bridging this gap.  Here is a script I created to ease the process of creating/importing multiple system drivers into MDT at once.  If ran more than once, it will not create duplicate selection profile entries. /BG

“A required CD/DVD drive driver is missing..” error when installing Windows 7 on new Toughbook laptops. – Updated 2016-12-06

By | October 11, 2016
Share

!! UPDATE: 12/6/2016- If the script doesn’t work, try changing the index number being adjusted to #2. 2 things need to happen to fix this: Windows 7 install PE needs the Windows 7 USB 3.0 driver package injected. USB 3.0 Host Controller Driver: http://pc-dl.panasonic.co.jp/d… USB 3.0 Driver: http://pc-dl.panasonic.co.jp/d… A registry hack (for lack of a… Read More »