forked from I2P_Developers/i2p.i2p

The default service path in Windows is fugly and not very convenient. I2P uses the correct path, but if you want to access snark or eepsite data, one must go to %SYSTEMROOT%\config\systemprofile\AppData\Roaming\I2P\ (Vista/7) or %SYSTEMROOT%\system32\config\systemprofile\Application Data\I2P (XP/2003). If this wasn't bad enough, in some cases one must take ownership of this path and grant permission to him- or herself to access the folder. With this changeset, I'm setting the path to %ALLUSERSPROFILE%\Application Data\I2P as well as adding a shortcut to the I2P folder in the Start menu.
53 lines
1.8 KiB
XML
53 lines
1.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<shortcuts>
|
|
<programGroup defaultName="I2P" location="startMenu" />
|
|
<shortcut name="Open I2P Profile Folder (service)"
|
|
target="explorer"
|
|
commandLine=""%allusersprofile%\Application Data\i2p""
|
|
iconFile="%systemroot%\system32\shell32.dll"
|
|
iconIndex="3"
|
|
initialState="normal"
|
|
startMenu="no"
|
|
programGroup="yes"
|
|
desktop="no"
|
|
startup="no" />
|
|
<shortcut name="Start I2P (no window)"
|
|
target="$INSTALL_PATH\I2P.exe"
|
|
commandLine=""
|
|
workingDirectory="$INSTALL_PATH"
|
|
iconFile="$INSTALL_PATH\docs\start.ico"
|
|
initialState="noShow"
|
|
programGroup="yes"
|
|
startMenu="no"
|
|
desktop="yes"
|
|
startup="no" />
|
|
<shortcut name="Start I2P (restartable)"
|
|
target="$INSTALL_PATH\I2Psvc.exe"
|
|
commandLine="-c wrapper.config"
|
|
workingDirectory="$INSTALL_PATH"
|
|
iconFile="$INSTALL_PATH\docs\start.ico"
|
|
initialState="noShow"
|
|
programGroup="yes"
|
|
startMenu="no"
|
|
desktop="yes"
|
|
startup="no" />
|
|
<shortcut name="I2P router console"
|
|
target="$INSTALL_PATH\docs\startconsole.html"
|
|
commandLine=""
|
|
workingDirectory="$INSTALL_PATH"
|
|
iconFile="$INSTALL_PATH\docs\console.ico"
|
|
initialState="normal"
|
|
programGroup="yes"
|
|
startMenu="no"
|
|
desktop="yes"
|
|
startup="no" />
|
|
<shortcut name="Uninstall I2P"
|
|
target="$INSTALL_PATH\uninstaller\uninstaller.jar"
|
|
commandLine=""
|
|
iconFile="$INSTALL_PATH\docs\uninstall.ico"
|
|
initialState="noShow"
|
|
startMenu="no"
|
|
programGroup="yes"
|
|
startup="no" />
|
|
</shortcuts>
|