Issue 1: Unable to save configuration on Windows 7 64 bit
Status:  Started
Owner: ----
Reported by braschlo...@gmail.com, Dec 9, 2010
What steps will reproduce the problem?
1. Double clicking jar file runs it without the ability to write to the current path of c:\program files (x86)\autopush

What is the expected output? What do you see instead?
To be able to save the path of the pytivo.conf

What version of the product are you using? On what operating system?
v0.1d of autopush on Windows 7 64 bit (Intel)

Please provide any additional information below.
Usually an executable can be right clicked and there is an option called "run as administrator" which will solve these types of issue. 

This may be able to be solved by launching a command prompt as administrator and then using the correct path. I tried 
C:\Program Files (x86)\Java\jre6\bin>java.exe "c:\Program Files (x86)\autopush\auto_push.jar" but that isnt the correct syntax as it gives an error - 

Exception in thread "main" java.lang.NoClassDefFoundError: c:\Program Files (x86
)\autopush\auto_push/jar
Caused by: java.lang.ClassNotFoundException: c:\Program Files (x86)\autopush\aut
o_push.jar
        at java.net.URLClassLoader$1.run(Unknown Source)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
Could not find the main class: c:\Program Files (x86)\autopush\auto_push.jar.  P
rogram will exit.

Dec 9, 2010
Project Member #1 moy...@yahoo.com
In Win7 Program Files (x86) folder is write protected for administrator as you have seen, so one solution is install the program somewhere else.

Otherwise write a little batch file such as auto.bat with following (you were close to write command above) that you can run as admin:
@echo off
"C:\Program Files (x86)\Java\jre6\bin>java.exe" -jar "c:\Program Files (x86)\autopush\auto_push.jar"
Status: Started