Tag Archives: SCCM

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 »

MDT does not like WIMs with 2 indexes!

By | July 27, 2016
Share

I like to capture my thick/hybrid WIM files with SCCM capture ISOs.  The big problem with this is that MDT doesn’t like WIM files with multiple indexes.  The symptom is that MDT appears to import the WIM, but NO OSes are added to the Deployment Workbench.  To fix this you must delete the 1st index… Read More »

Powershell script to collect MDT/SCCM/Windows logs from a local system

By | September 11, 2015
Share

Add this script to your custom WinPE boot media to make grabbing the logs from a system simple and quick. UPDATED 9/11/2016 – https://github.com/brianfgonzalez/Scripts/blob/master/CollectLogs.ps1 <# Version: 1.1 ChangeLog: – September 10, 2015 : First revision of script. – Moved function code above function call. 1.1 – Switched to using [System.IO.DriveInfo]::getdrives() instead of gwmi #> function… Read More »

Whats new in MDT 2013 Preview 1 that you should care about?

By | March 10, 2015
Share

So here’s what I found so far: https://connect.microsoft.com/ConfigurationManagervnext/Downloads Note: You need to join the “program” to access the downloads page. 1. The obvious! Windows 10 Technical Preview deployment support. 2. MDT auto-spans >4gb WIM files to support UEFI bootable “removeable media”. Thank you Microsoft! 3. New “unfancy” wallpaper. 4. Same unstable MMC console. 5. Editing… Read More »