Category Archives: Windows 10

UEFI Enable on Panasonic Toughbooks in Windows PE

By | March 28, 2018
Share

UPDATE 04-03-2019: For newer Toughbooks you must also install SID0040 https://pc-dl.panasonic.co.jp/dl/docs/077586?dc%5B%5D=002001&lang=003&no=41&oc=001042&p1=218&p2=2180633&score=1.0&sri=13615846&trn_org=2 This setting change uses the Panasonic “WMI BIOS CONFIGURATION TOOL”: ftp://ftp.panasonic.com/computer/software/wmi_tool_software.zip The sid0021 driver is required for this tool: http://pc-dl.panasonic.co.jp/dl/docs/076632?dc%5B%5D=002001&lang=003&no=18&oc=001039&p1=117&p2=1170603&score=1.0&sri=12295314&trn_org=2 Here is a package containing both the tool, driver and batch script to enable UEFI in WinPE, but other BIOS settings can be changed using… Read More »

Internet Explorer start tile not working with the PowerShell Import-StartLayout

By | March 26, 2018
Share

Here is a working configuration for importing a “Internet Explorer” tile to the Start screen using the Import-StartLayout PowerShell cmdlet.  This was tested on Win 10 1703. Here is my exported start layout.  I had to manually switch out the %APPDATA% variable with the %ALLUSERSPROFILE% to get it working. <LayoutModificationTemplate xmlns:defaultlayout=”http://schemas.microsoft.com/Start/2014/FullDefaultLayout” xmlns:start=”http://schemas.microsoft.com/Start/2014/StartLayout” Version=”1″ xmlns=”http://schemas.microsoft.com/Start/2014/LayoutModification”> <LayoutOptions StartTileGroupCellWidth=”6″… Read More »

Copy an MDT Deployment Share to a USB without building a Media Share

By | March 27, 2017
Share

*Updated to support both x86/x64 boot wims. This script copies an MDT Deployment Share to a USB drive and basically converts it to a media share in the process.  You must edit and update the “DrvLetter” variable. Please the batch file beside the “Deploy” folder. @setlocal enableextensions enabledelayedexpansion @echo off REM Variables that require updating SET… 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 »