Deploy Helpers/Tools
Upon starting the kukinit.exe try to start update.bat or update.exe from external Memory devices
like \SDMMC Card, \Storage Card, \Hard Disk.
After scanning the external memory devices, the internal folder \flashdisk is scanned for autoexec.bat and auto.exe.
Note: only the first file, which is found, will be executed.
To help customers deploy their devices automatically, Seco offers additional tools like:
Flashupdate.exe, RegistryImport.exe, TestRegistry.exe, 7zDec.exe, FileCopy.exe
Starting with an autoboot.bat, which instructs the bootloader to execute bootloader commands, the user is able to add files automatically after the initial start of the device.
Once the device is prepared, the FlashUpdate.exe Tool is able to dump a Master Image to any target device.
The Master-Image can be deployed by the bootloader or even with Flashupdate.exe itself.
The Tools can be either used to deploy or for field updates.
TestRegistry.exe and RegistryImport.exe
TestRegistry.exe can be used to test via script, wether a DWORD is set in Registry. Sample cmd.exe script (*.bat):
"\SDMMC Card\TestRegistry.exe" HKEY_LOCAL_MACHINE\MyCustomer\RegistryPrepared
if errorlevel 1 goto ReginitDone
.....
:ReginitDone
The RegistryImport.exe Tool adds registry entries to the system registry. It is possible to persist these entries with the /b option.
usage: RegistryImport.exe [/f"filename"] [/s] [/b]
/f"Filename" specifies Filename of registry text file.
/s do not show GUI
/b save registry after modification
Sample script:
@echo off
cls
echo .
REM --- Test wether custom registry is set
"\SDMMC Card\TestRegistry.exe" HKEY_LOCAL_MACHINE\MyCustomer\RegistryPrepared
if errorlevel 1 goto ReginitDone
echo Set custom registry values and save registry file to flash
REM If not set, prepare Registry with RegistryImport.exe
"\SDMMC Card\RegistryImport.exe" /f"\SDMMC Card\Registry.mod" /b /s
rem \windows\pregedit.exe
goto end
:ReginitDone
echo Custom Registry Initialisation already done....
pause 100
:end
Download: deploy_support.zip.
Tool for extracting NOR Flash to SDCARD (ConXS)
This Windows CE Image loads to RAM (boot mmc nk.nb0). After it has been loaded, the full flash content will be saved into a single File on SDCARD (Master.dat).
With the Bootloader this file can be copied to another Trizeps with the same memory configuration.
Download: nk.nb0