Select to view content in your preferred language

Silent Install & Uninstall for ArcPad 6.0.3?

843
0
11-17-2010 05:56 AM
ThomasWeingartner
New Contributor
The post below concerning ArcPad 8.0 is from the old forum.
(see also http://forums.esri.com/Thread.asp?c=34&f=2461&t=297500).

But this does not work for ArcPad 6.0.3,
can anyone help?

Thanks!
Tom


Subject  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
)


---------- uninstall.bat ------
"C:\Program Files\Arcpad 8.0\CABs\UNWISE.EXE" /a /s C:\PROGRA~1\ARCPAD~1.0\CABs\INSTALL.LOG
Tags (3)
0 Kudos
0 Replies