Changes

Remote Administrator

122 bytes added, 13:09, 25 October 2006
no edit summary
* Install the software to a test machine.
* Configure all server settings and install the license file.
* See the Remote Administrator manual for instructions on how to create a registry settings file. The manual is available from the [http://www.famatech.com/download/manuals.php Famatech] web site. You will need the HKEY_LOCAL_MACHINE\SYSTEM\RAdmin (settings.reg) and HKEY_LOCAL_MACHINE\SOFTWARE\RAdmin (license.reg) key stores.
* Copy r_server.exe, raddrv.dll, and the registry settings, settings.reg, to your software repository.
* Put install.bat and remove.bat into your software repository.
==package.xml==
 
<pre>
<package id="radmin" name="Remote Administrator 2.2" revision="1" reboot="truefalse" priority="0">
<check type="logical" condition="or">
<check type="logical" condition="and">
<check type="uninstall" condition="exists" path="Remote Administrator v2.2" />
</check>
  <install cmd='%WINDIR%\system32\cmd /c start /wait /d %WINDIR% %SOFTWARE%\radmin-2.2\install.bat' /> <remove cmd='%WINDIR%\system32\cmd /c start /wait /d %WINDIR% %SOFTWARE%\radmin-2.2\remove.bat' />
</package>
</pre>
==install.bat==
 
<pre>
@echo off
%windir%\system32\r_server.exe /install /silence
regedit.exe /s %SOFTWARE%\radmin-2.2\settings.reg
regedit.exe /s %SOFTWARE%\radmin-2.2\license.reg
net start "Remote Administrator Service"
exit 0
==remove.bat==
 
<pre>
@echo off
Anonymous user