Tag Archives: Script

Batch code snippet to query, then update dynamic values in registry

By | September 21, 2016
Share

FOR /F “tokens=1,2*” %%a in (‘reg.exe query “HKLM\SYSTEM\CurrentControlSet\Control\Class”‘) DO call :FindAndReplace %%a goto cleanup :FindAndReplace reg.exe query “%1\0000” /f “COM3” /d > nul if “%ErrorLevel%”==”0” reg.exe add “%1\0000” /v “AttachedTo” /t REG_SZ /d “COM1” /f exit /b :cleanup echo “This is a test” pause The snippet pulls sub-keys from the “HKLM\SYSTEM\CurrentControlSet\Control\Class” and passing each to a… 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 »

Force a GPS port to a desired Port in Windows 7/8/10.

By | July 15, 2016
Share

In a recent scenario, I needed to force to the Gobi 5000’s (WWAN) GPS to use COM3 in Windows 7 x64.  Here are the steps I took to accomplish this.  This process was also tested and worked on moving a “u-blox virtual..” to COM, and moving a COM2 device to use COM3. 1. BEFORE your drivers are… Read More »

Split GPS COM Ports using com0com and hub4com

By | November 19, 2015
Share

Here is a script I wrote to split GPS COM ports to multiple virtual COM ports.  In this Create virtual COM ports 14 and 15 using com0com (Used a high number to avoid hitting a conflict with an existing port). Download link: https://code.google.com/p/powersdr-iq/downloads/detail?name=setup_com0com_W7_x64_signed.exe&can=2&q= start /w “” “%~dp0setup_com0com_W7_x64_signed.exe” /S cd /d “C:\Program Files (x86)\com0com” setupc.exe install 0… Read More »