Category Archives: Silent Installers

Running a PXE Server in Windows 10 in less than 10 minutes

By | February 16, 2018
Share

UPDATE – 04-03-2019: try serva https://www.vercot.com/~serva/ instead of tftpd32, it supports uefi. Download the “Portable” version of the Tftpd32 software. http://tftpd32.jounin.net/ All of my source files: https://drive.google.com/open?id=1FAIPPtIogFOk_uklAS_D7YxLrxI36Hly My TFTPROOT folder contents and source Files were pulled from Windows 10 ADK installation. C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media => TFTPROOT\bootmgr.exe TFTPROOT\Boot\en-us\bootmgr.exe.mui TFTPROOT\Boot\en-us\memtest.exe.mui TFTPROOT\Boot\Fonts\*.* TFTPROOT\Boot\Resources\bootres.dll… 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 »

Silent GOBI 5000 (Sierra MC7355) driver installation with desired firmware

By | September 8, 2016
Share

*UPDATED* 2016/10/11 – Corrected file path for ftd.exe for Windows 7. *UPDATED* 2016/09/15 – Corrected FWUPDATE setting “OFF” to ensure no firmware is installed along with driver. Official Build 4316 download link: ftp://ftp.panasonic.com/computer/firmware/sierra_aircard_watcher_v3728_win_xp_7_firmware.zip Download, Extract and Update the “Configuration.ini”, so it doesn’t auto apply the Verizon FW and installs the driver in silent mode: [Default Values]… Read More »

SOLVED: Netmotion XG Mobility Client Install Driver Prompt

By | August 11, 2016
Share

SOLVED (08/11/2016): http://www.netmotionwireless.com/support/docs/MobilityXG/1100/help/mobilityhelp.htm#page/Mobility%20Server/setup.03.39.html The “NM_Options” property MUST be used, even when using the MmsAddress MSI property. So my final install string was this: ## <Perform Installation tasks here> Show-InstallationProgress -StatusMessage ‘Installing NetMotion XG Client. This may take some time. Please wait…’ Execute-Process -Path “msiexec.exe” -Parameters ” /norestart /quiet /package “”$dirFiles\Mobility_xg_client_11.01_Win7_x64_release.msi”” NM_ADDRESS_VALUE=x.x.x.x:x EQSI=””1″” NM_Options=””$dirFiles\options.inf”” REBOOT=ReallySuppress” Forum… Read More »