Select to view content in your preferred language

ArcPad10 Enterprise install, set serial number for each user in unattended install

3958
1
01-09-2012 06:19 AM
CherylBidstrup
New Contributor
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
)
Tags (3)
0 Kudos
1 Reply
JuanLuera
Deactivated User
Cheryl,

In looking into these two items for you, I was able to locate where these are two logged bugs with development. I am including the bug numbers and titles, and where you would be able to track their progress. Gracias, Cheryl!


[#NIM075007 Looking to perform a batch silent install/uninstall of ArcPad. ]
[#NIM074863 ArcPad prompts user with administration rights to re-enter registration code, after being registered initially by a user with administration rights. ]

ESRI Customer Care Portal
http://customers.esri.com/index.cfm?event=login.show
MySupport
http://support.esri.com/en/
0 Kudos