"Chuck" wrote:
> Even after disabling ipass, I still get nothing in the available
> wireless networks and a refresh of available wireless networks still
> occurs (and apparently fails) instantaneously rather than waiting 4-5
> seconds.
Chuck, I don't have the ipass client so can't tell what it leaves
behind, even being "disabled". How you disable it?
The wireless tab should be visible if WZC is installed and running -
but WZC must also recognize the adapter as "wireless".
iPass or other 3rd party software may interfere with this, so WZC
won't work with the adapter.
Frankly I don't know how to solve this, besides of calling
support of iPass (and they should work with the vendor of your wireless card).
Meanwhile, try the following script, to verify
that the wireless card does scan:
~~~~~~~cut here, save to file ~~~~~~~~
Wscript.Echo "Enumerating wireless adapters"
N=0
Set wmi=GetObject("winmgmts:{impersonationLevel=impers onate}!root/wmi")
Set AdapterSet=wmi.ExecQuery("select * from MSNdis_80211_BSSIList")
On Error Resume Next
For each wa in AdapterSet
WScript.Echo "Adapter name=", wa.InstanceName
WScript.Echo "Number Of Items in scan=", wa.NumberOfItems
N = N + wa.NumberOfItems
WScript.Echo "Total:", N
Next
If Err.Number <> 0 Then
Wscript.Echo "Error in enumeration (no wlan adapter?) ", Err.Number
End If
WScript.Echo "done"
~~~~~~~cut here~~~~~~~~~~~~~~~~~~~~
Save this snippet as scan.vbs and run in command window:
c:\> cscript scan.vbs
Regards,
--PA
> Pavel A. wrote:
> > Hmm, iPass has it's own wireless client.
> > I haven't worked with it yet, don't know details.
> > Maybe this explains what you see.
> >
> > --PA
|