Tag Archives: MDT 2013

How to Add “Deployment Duration” to the MDT Litetouch’s Final Summary Page

By | March 19, 2017
Share

1. Add a step in Task Sequence to create a “.tag” file named after the OsdComputerName, which will be later used to determine the deployment duration. Command Line: cmd /c echo. > “Z:\Logs\%OsdComputerName%.tag” 2. Add a Task Sequence step to sync time with Deployment Server during the State Restore phase. Command Line: cmd /c net time \\192.168.56.1… Read More »

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 »

How Can I Display An MDT Wizard Screen Only When A Certain Task Sequence Is Selected?

By | November 26, 2014
Share

If you need to display a wizard screen ONLY if a certain Task Sequence is selected, this is a method to accomplish this. 1. Add a custom step in the Task Sequence. 2. Using the Wizard Studio, build your custom page and use the following condition to force it to display only when your custom step… Read More »