Category Archives: MDT2013

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 »

MY ZTIDefaultAssociations.wsf MDT Script for Force Applying File Associations in Windows 10

By | March 4, 2017
Share

GitHub Link: https://github.com/brianfgonzalez/Scripts/blob/master/ZTIDefaultAssociations.wsf <job id=”ZTIDefaultAssociations”> <script language=”VBScript” src=”../../Scripts/ZTIUtility.vbs”/> <script language=”VBScript”> ‘ // *************************************************************************** ‘ // ‘ // Copyright (c) Microsoft Corporation. All rights reserved. ‘ // ‘ // Microsoft Deployment Toolkit Solution Accelerator ‘ // ‘ // File: ZTIDefaultAssociations.wsf ‘ // ‘ // Version: 6.3.8443.1000 ‘ // ‘ // Purpose: Use Dism to force apply start… Read More »

My ZTIStartLayoutConfig.wsf for applying a Windows 10 start layout and taskbar setup with MDT/SCCM.

By | March 4, 2017
Share

Note: You must copy your desired LNK files over to the AllUsersProfiles before adding them to the start layout or taskbar. GitHub link: https://github.com/brianfgonzalez/Scripts/blob/master/ZTIStartLayoutConfig.wsf <job id=”ZTIStartLayoutConfig”> <script language=”VBScript” src=”../../Scripts/ZTIUtility.vbs”/> <script language=”VBScript”> ‘ // *************************************************************************** ‘ // ‘ // Copyright (c) Microsoft Corporation. All rights reserved. ‘ // ‘ // Microsoft Deployment Toolkit Solution Accelerator ‘ //… Read More »

Batch script to set the A1 button actions on a FZ-G1 Toughpad tablet

By | December 14, 2016
Share

Here is the batch, it’s fairly self-explanatory: rem import default user’s hive reg load HKLM\ImportedHive “%SystemDrive%\Users\Default\NTUSER.DAT” rem create batch that will be called by A1 button echo “%ProgramFiles(x86)%\Panasonic\PCam\PCam.exe”>%WinDir%\System32\A1Click_Mapping.bat echo “%ProgramFiles(x86)%\Panasonic\TSModSel\tsmodsel.exe” -G>%WinDir%\System32\A1Hold_Mapping.bat rem ties A1 to cmd.exe /c %WinDir%\System32\A1Click_Mapping.bat and A1Hold_Mapping.bat for the DEFAULT USER Reg.exe add “HKLM\ImportedHive\Control Panel\TabletPC\ButtonMaps\0” /v “ButtonID” /t REG_DWORD /d “2” /f… Read More »

2 Unattend.xml settings I specify in all of my Windows 10 installations.

By | December 14, 2016
Share

   There are others, but these are 2 I include in all of my Unattend.xml files. Disable the First run animation from displaying: reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System /v EnableFirstLogonAnimation /t REG_DWORD /d 0 /f Prevent the Network Selection box from appearing. reg add HKLM\System\CurrentControlSet\Control\Network\NewNetworkWindowOff /F …. <RunSynchronousCommand wcm:action=”add”> <Description>disable firstlogon animation for win10</Description> <Order>5</Order> <Path>reg add… Read More »