SoulAssassin
Diamond Member
After getting fed up w SETIQueue and SETIDriver not attempting enough to d/l enough w/u's and waiting too long between tries, I started writing a script that would parse through the dir's and try to send w/u's up. Below you'll find a rough, but working, copy of a script you can place in your setidriver dir that will go through and attempt to send results/pull w/u's.
If 1 out of X attempts to connect fail, the more attempts you make, the more will get through. The end purpose being to have an AT job that runs every X minutes in addition to the SETIQ/Driver attempts. I'll probably make some more changes later to copy user_info files (useful when adding dir's or adding setidriver installations and it keeps asking you for your email address) as well as some error checking (if not exist c:\setidriver\%%1 and others) as well as the AT cmd line to schedule it.
If anyone knows of a cmd line argument to throw at SETI to make it try more often than once an hour it would be greatly appreciated. Don't forget to change the dir/executable name.
Feedback or thoughts on other ways to work this are greatly appreciated.
>> Begin cut/paste below
echo off
set START=1
set MAX=2
for /l %%i in (%START%,1,%MAX%) do (
copy c:\setidriver\seti.exe c:\setidriver\%%i\
c:\setidriver\%%i\seti.exe -stop_after_xfer
del c:\setidriver\%%i\seti.exe
)
If 1 out of X attempts to connect fail, the more attempts you make, the more will get through. The end purpose being to have an AT job that runs every X minutes in addition to the SETIQ/Driver attempts. I'll probably make some more changes later to copy user_info files (useful when adding dir's or adding setidriver installations and it keeps asking you for your email address) as well as some error checking (if not exist c:\setidriver\%%1 and others) as well as the AT cmd line to schedule it.
If anyone knows of a cmd line argument to throw at SETI to make it try more often than once an hour it would be greatly appreciated. Don't forget to change the dir/executable name.
Feedback or thoughts on other ways to work this are greatly appreciated.
>> Begin cut/paste below
echo off
set START=1
set MAX=2
for /l %%i in (%START%,1,%MAX%) do (
copy c:\setidriver\seti.exe c:\setidriver\%%i\
c:\setidriver\%%i\seti.exe -stop_after_xfer
del c:\setidriver\%%i\seti.exe
)