2004-08-25 11:20:56 +00:00
|
|
|
:: I2P Installer - Installs and pre-configures I2P.
|
|
|
|
::
|
|
|
|
:: postinstall.bat
|
|
|
|
:: 2004 The I2P Project
|
|
|
|
:: http://www.i2p.net
|
|
|
|
:: This code is public domain.
|
|
|
|
::
|
|
|
|
:: author: hypercubus
|
|
|
|
::
|
|
|
|
:: Installs the Java Service Wrapper support files for Win32 then launches the
|
|
|
|
:: I2P router as a background service.
|
|
|
|
|
|
|
|
@echo off
|
2004-08-26 17:22:37 +00:00
|
|
|
setlocal
|
2004-08-25 11:20:56 +00:00
|
|
|
set INSTALL_PATH=%~dp0
|
|
|
|
copy "%INSTALL_PATH%lib\wrapper\win32\I2Psvc.exe" "%INSTALL_PATH%"
|
|
|
|
copy "%INSTALL_PATH%lib\wrapper\win32\wrapper.dll" "%INSTALL_PATH%lib"
|
|
|
|
copy "%INSTALL_PATH%lib\wrapper\win32\wrapper.jar" "%INSTALL_PATH%lib"
|
|
|
|
"%INSTALL_PATH%i2prouter.bat"
|