Below is valuable information I copied from a prior forum regarding creating an unattended install for ArcPad10. It works well, except that each user, upon opening ArcPad10 is still prompted for the registration number. Once that number is entered, an entry is made under HCKU\Software\ESRI\ArcPad reg key and they are good to go. However, we'd like to create this installation so that each user does not have to enter the registration number. Any guidance on how to have that happen automatically? Thanks.
Re: Silent Install & Uninstall for ArcPad?
Author ard blenke
Date Jan 14, 2010
Message Create a batch file that runs the script below. Replace the xxxx's in the reg add command with your own license code (you can read then from the registry where arcpad has already been installed)
--------- install.bat --------
start /wait setup.exe /s
if /I %PROCESSOR_ARCHITECTURE%==x86 (
reg add HKLM\Software\Esri\ArcPad /v CRC /t REG_DWORD /d xxxx /f
reg add HKLM\Software\Esri\ArcPad /v SerialNumber /d xxxxxxxxxx /f
) else (
reg add HKLM\Software\Wow6432node\Esri\ArcPad /v CRC /t REG_DWORD /d xxxx /f
reg add HKLM\Software\Wow6432node\Esri\ArcPad /v SerialNumber /d xxxxxxxxxx /f
)