NetStumbler.org Forums

Go Back   NetStumbler.org Forums > Software > Windows
Register Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Display Modes
Old 04-26-2007   #1 (permalink)
CrabNumber76
Registered Member
 
Join Date: Apr 2007
Posts: 9
another thread about WG511

Ok, folks I know about all the threads that discuss at some point the Netgear WG511 and others like it. it is also in the works with NS thread but doesn't appear to be actually "supported".
but this is not the same problem. first off, I am not using an outdated OS or an outdated computer. I was forced to use Vista because that is what my notebook came with and there are no XP drivers for the guts. Yes I am aware of the Vista issue. unlike most noobs this noob did many searches. Netstumbler works fine on my system because I run it as an administrator. I also downloaded and installed the Vista compatible drivers for the WG511. So.. they both work but not together. so, I tried the work-arounds found on this forum. they didn't work. This is a WG511 v2 so that may be at least part of the problem. So that is the situation. Please don't tell me to buy a different card. I already know. however, because I live in the middle of a desert the only electronics store within about forty miles only has a small selection of wireless notebook adapters.
one is a linksys G that happens to be on the incompatible with NS list and is incompatible with my computer for unknown reasons. The other choice is the cardbus adapter I have. So there we have it. does anybody have any idea how to make this work?
right now I am using a script that runs netsh wlan> show networks mode=bssid in a loop. I don't know how to save the results though because it is in the command prompt window. The only copy method that works in cmd selects everything in the window. It's a lousy way to do it.

no I don't need to crack WEPs
"why don't you order online?" Don't ask! You really don't want to know.
__________________
That's quite the spoon you got there Phil ....
..uh, no thanks I don't need .... GAAAA! mfff.
CrabNumber76 is offline   Reply With Quote
Old 04-26-2007   #2 (permalink)
Thorn
Did you do the math?
 
Thorn's Avatar
 
Join Date: Apr 2002
Location: Villa Straylight
Posts: 10,099
Quote:
Originally Posted by CrabNumber76
Ok, folks I know about all the threads that discuss at some point the Netgear WG511 and others like it. it is also in the works with NS thread but doesn't appear to be actually "supported".
but this is not the same problem. first off, I am not using an outdated OS or an outdated computer. I was forced to use Vista because that is what my notebook came with and there are no XP drivers for the guts. Yes I am aware of the Vista issue. unlike most noobs this noob did many searches. Netstumbler works fine on my system because I run it as an administrator. I also downloaded and installed the Vista compatible drivers for the WG511. So.. they both work but not together. so, I tried the work-arounds found on this forum. they didn't work. This is a WG511 v2 so that may be at least part of the problem. So that is the situation. Please don't tell me to buy a different card. I already know. however, because I live in the middle of a desert the only electronics store within about forty miles only has a small selection of wireless notebook adapters.
one is a linksys G that happens to be on the incompatible with NS list and is incompatible with my computer for unknown reasons. The other choice is the cardbus adapter I have. So there we have it. does anybody have any idea how to make this work?
You're probably out of luck unless you can get this to work in an NDIS mode.

Quote:
Originally Posted by CrabNumber76
right now I am using a script that runs netsh wlan> show networks mode=bssid in a loop. I don't know how to save the results though because it is in the command prompt window. The only copy method that works in cmd selects everything in the window. It's a lousy way to do it.
That's an interesting way to do it. You might pipe or redirect the results to a text file, depending on the logic of your script. Another possible way is to use the "/+" and "/b" arguments to the copy command to append the output to the end of a text file. Information for either of those methods should be available via Google.

Another possibility is to use Microsoft Power Shell. It's a free download from MS and is supposed to be a very flexible shell on the order of bash or cshell. Although not having tried it, I can't say for certain how good it actually may be.

In case you don't know:
Pipe: |
Redirect: >
__________________
Thorn
"I'm The Doctor. I'm a Time Lord. I am from the planet Gallifrey in the constellation Kasterborous. I'm 903 years old and I am the man who is going to save your lives and all 6 billion people on the planet below... You got a problem with that?"
Thorn is offline   Reply With Quote
Old 04-26-2007   #3 (permalink)
CrabNumber76
Registered Member
 
Join Date: Apr 2007
Posts: 9
I also have a built in Atheros AR5006EG. It doesn't work with NS either.
__________________
That's quite the spoon you got there Phil ....
..uh, no thanks I don't need .... GAAAA! mfff.

Last edited by CrabNumber76 : 04-27-2007 at 01:44 PM.
CrabNumber76 is offline   Reply With Quote
Old 04-27-2007   #4 (permalink)
CrabNumber76
Registered Member
 
Join Date: Apr 2007
Posts: 9
Quote:
Originally Posted by Thorn
You're probably out of luck unless you can get this to work in an NDIS mode.
Thats what I was afraid of. I found a few NDIS drivers that would work with XP or Linux, nothing for Vista yet. Still there may be a way to mess things up enough to get it to work, so I'll keep at it for a while.

Quote:
Originally Posted by Thorn
Another possibility is to use Microsoft Power Shell. It's a free download from MS and is supposed to be a very flexible shell on the order of bash or cshell. Although not having tried it, I can't say for certain how good it actually may be.

In case you don't know:
Pipe: |
Redirect: >
I'll try that. I don't think I will ever be able to build something that will work as well as NS but if I can log the access point names, the time and signal strength then I can brain the rest. I have a way of keeping track of where I am at what time.
EDIT: When I say "I can brain the rest" I am referring to the basic information. There is of course a great deal of useful information that I have not found a way to get. (yet)

...and thanks Thorn.
__________________
That's quite the spoon you got there Phil ....
..uh, no thanks I don't need .... GAAAA! mfff.

Last edited by CrabNumber76 : 04-27-2007 at 02:15 PM.
CrabNumber76 is offline   Reply With Quote
Old 04-27-2007   #5 (permalink)
CrabNumber76
Registered Member
 
Join Date: Apr 2007
Posts: 9
OK, the CMD comands don't work in netsh so I looked around and found out how to do it.
here is what the new script does (without the script commands);
(asks user to input loop time)
run, cmd
(sends text to command line)
netsh
wlan (only works in vista)
set file append C:\Users\User\some text file.txt
(loops the next part)
(sends text to command line)
show networks mode=bssid
(gets time and sends as text to "some text file.txt")
end

I'll see if it works later.
__________________
That's quite the spoon you got there Phil ....
..uh, no thanks I don't need .... GAAAA! mfff.
CrabNumber76 is offline   Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



Google
 
Web NetStumbler.org

All times are GMT -7. The time now is 01:22 AM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0 ©2007, Crawlability, Inc.


All messages express the views of the author and are for entertainment purposes only. Netstumbler.org cannot be held responsible for the authenticity of the content or the actions of its members. By using this site and its services, you warrant that you will not post any messages that are discriminating, obscene, hateful, threatening, or otherwise violates any laws and you release Netstumbler.org from any future claims of any kind whatsoever including, but not limited to, addiction and loss of productivity. All forum messages, private messages and any other content are properties of Netstumbler.org. Even if publicly available, personal or copyrighted information are not to be posted without the consent of the owner. Distribution of licensed and copyrighted materials in any way not endorsed by the copyright owner is strictly prohibited. You may not use this site and its resources to spam other sites or individuals or perform any action that violates any law. Items sold or bought in the For Sale forum are sold as is and no warranty or insurance of any kind is provided. Netstumbler.org cannot be held responsible for the outcome of any transactions and no warranty of any kind is provided, either express or implied. Vulgar words are not allowed in the subject lines ; they may be used in the message body in any forum. The Administrator, Super Moderators and Moderators of Netstumbler.org have the right to remove, edit, move or close any thread for any reason and to reveal your identity and other known information in the event of a complaint or legal action arising from any message posted by you.