Category Archives: Toughpad

Map A1 button on CF-20 and CF-33 to perform soft dismount from keyboard base

By | November 28, 2018
Share

This sniplet was written to work within a Powershell app deploy toolkit package.  If you are not familiar with that toolkit, get familiar with it, its a huge time saver. ## <Perform Installation tasks here> Execute-Process -Path “$envSystem32Directory\reg.exe” -Parameters (‘load HKLM\ImportedHive “{0}\Users\Default\NTUSER.dat”‘ -f $envSystemDrive) $bClickDefAction = [byte[]](0x25,0x00,0x53,0x00,0x79,0x00,0x73,0x00,0x74,0x00,0x65,0x00,0x6d,0x00,0x52,0x00,0x6f,0x00,0x6f,0x00,0x74,0x00,0x25,0x00,0x5c,0x00,0x53,0x00,0x79,0x00,0x73,0x00,0x74,0x00,0x65,0x00,0x6d,0x00,0x33,0x00,0x32,0x00,0x5c,0x00,0x72,0x00,0x75,0x00,0x6e,0x00,0x64,0x00,0x6c,0x00,0x6c,0x00,0x33,0x00,0x32,0x00,0x2e,0x00,0x65,0x00,0x78,0x00,0x65,0x00,0x00,0x00,0x63,0x00,0x66,0x00,0x67,0x00,0x6d,0x00,0x67,0x00,0x72,0x00,0x33,0x00,0x32,0x00,0x2e,0x00,0x64,0x00,0x6c,0x00,0x6c,0x00,0x2c,0x00,0x43,0x00,0x4d,0x00,0x5f,0x00,0x52,0x00,0x65,0x00,0x71,0x00,0x75,0x00,0x65,0x00,0x73,0x00,0x74,0x00,0x5f,0x00,0x45,0x00,0x6a,0x00,0x65,0x00,0x63,0x00,0x74,0x00,0x5f,0x00,0x50,0x00,0x43,0x00,0x00,0x00) Set-RegistryKey -Key ‘HKEY_LOCAL_MACHINE\ImportedHive\Control Panel\TabletPC\ButtonMaps\2’ -Name ‘ButtonID’ -Type ‘Dword’… 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 »

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 »

Windows 10 “Upgrade” Drivers Released for the FZ-G1(Mark 3), FZ-M1C (Mark 1), and the CF-311(Mark 5).

By | July 29, 2015
Share

http://pc-dl.panasonic.co.jp/dl/search?q=Windows+10+Upgrade+Support+Download+Modules&button=&dc%5B%5D=002001&p1=&p2=&oc=&lang= Supported Models: FZ-G1 (Mark 3) FZ-M1C (Mark 1) CF-311 (Mark 5) * Drivers are meant to be used for upgrading from Win 7 or Win 8.1 to Win 10. -Brian G

Where is the Wacom Touchscreen Data saved in the Registry?

By | December 21, 2014
Share

Wacom’s pressure settings, calibration data, shortcut keys are all inside the .dat file. Before proceeding, if you want to keep your data secure, then consider buying this cloud service. C:\Users\\AppData\Roaming\WTablet (on Windows 7) – ISD_Tablet.dat (Tablet PC) – WTablet.dat (Cintiq) Windows’ calibration is in the registry. HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TabletPC\UserLinearityData Export that branch to a .reg file using… Read More »