![]() |
|
|
#1 (permalink) |
|
Registered Member
Join Date: Aug 2004
Posts: 8
|
autosave?
I've been looking throught scripts and havent found one that did this. Has anyone written a script that autosaves the information to the file as soon as a new AP has been found. I know that the program autosaves the info on exit but I need the data to be saved as soon as its found.
Can anyone help me on this one? |
|
|
|
|
|
#2 (permalink) | |
|
I amuse you?
Join Date: Dec 2003
Posts: 9,147
|
Quote:
Last edited by wrzwaldo : 08-06-2004 at 02:36 PM. |
|
|
|
|
|
|
#3 (permalink) |
|
General "Noob Basher"
Join Date: Apr 2002
Location: Munich, Germany
Posts: 1,620
|
What if you just found 50 AP's for WWWD5 then 2min later your pc crashes...
you would loose those AP's and have to go back again. This is why NS saves the file after every AP, that way if your Lappy dies then you don't loose anthing.
__________________
Legends may sleep, but they never die!!!! |
|
|
|
|
|
#5 (permalink) | |
|
I amuse you?
Join Date: Dec 2003
Posts: 9,147
|
Quote:
|
|
|
|
|
|
|
#7 (permalink) |
|
Registered Member
Join Date: Aug 2004
Posts: 8
|
all I really want is a script that will autosave the data for me. I am settin up a dedicated computer in my car that will power on when the car turns on and then will have the power cut when the car is turned off. Because netstumbler saves when you close the program all my data is lost when I abruptly kill the power. Anyone know how I can just have it save without writing all my info to a db.
I'm thinking a simple script that saved the file every minute or two would work. Or a script that saved the info to the file after every two or three access points were found. Lemme know |
|
|
|
|
|
#8 (permalink) | |
|
I amuse you?
Join Date: Dec 2003
Posts: 9,147
|
Quote:
|
|
|
|
|
|
|
#10 (permalink) | |
|
Did you do the math?
Join Date: Apr 2002
Location: Villa Straylight
Posts: 10,361
|
Quote:
__________________
Thorn "Read Altas Shrugged. Compare it to today. Repeat as necessary" |
|
|
|
|
|
|
#12 (permalink) |
|
Knight Tooth Puller
Join Date: Aug 2004
Location: Bellevue, WA, USA
Posts: 182
|
You can trigger a manual save via a script.
Get an existing VBScript-based script and put in these two lines near the top: Code:
dim SHO
set SHO=CreateObject("WScript.Shell")
Then, in the OnScanResult subroutine, add this line (substituting for SHO each time if you already had CreateObject("WScript.Shell") assigned to something else) Code:
if SHO.AppActivate("Network Stumbler") then SHO.SendKeys("^s")
|
|
|
|
|
|
#15 (permalink) |
|
Knight Tooth Puller
Join Date: Aug 2004
Location: Bellevue, WA, USA
Posts: 182
|
While I could post a script to do it, I think it'd be better to add it to the default script. That way you're less likely to miss any features (e.g. sound).
With the default script saved in a file (e.g. save as default.vbs, make copy as def.vbs, edit def.vbs):
![]() |
|
|
|