Index: java/installer2/src/net/oni2/aeinstaller/backend/Paths.java
===================================================================
--- java/installer2/src/net/oni2/aeinstaller/backend/Paths.java	(revision 778)
+++ java/installer2/src/net/oni2/aeinstaller/backend/Paths.java	(revision 779)
@@ -36,5 +36,13 @@
 			return new File(wd);
 		} else {
-			return getJarPath().getParentFile();
+			String jarPath = Paths.class.getProtectionDomain().getCodeSource()
+					.getLocation().getPath();
+			String decodedPath = null;
+			try {
+				decodedPath = URLDecoder.decode(jarPath, "UTF-8");
+			} catch (UnsupportedEncodingException e) {
+				e.printStackTrace();
+			}
+			return new File(decodedPath).getParentFile().getParentFile();
 		}
 	}
@@ -44,13 +52,5 @@
 	 */
 	public static File getJarPath() {
-		String jarPath = Paths.class.getProtectionDomain().getCodeSource()
-				.getLocation().getPath();
-		String decodedPath = null;
-		try {
-			decodedPath = URLDecoder.decode(jarPath, "UTF-8");
-		} catch (UnsupportedEncodingException e) {
-			e.printStackTrace();
-		}
-		return new File(decodedPath).getParentFile();
+		return new File(getInstallerPath(), "bin");
 	}
 
