19 lines
588 B
Batchfile
19 lines
588 B
Batchfile
![]() |
:: 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
|
||
|
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"
|