Tagged Questions
The wlanapi tag has no wiki summary.
2
votes
3answers
297 views
Using C# or Powershell to scan all available wireless networks and connect to a specific SSID
I am trying to write a script that scans all the available wireless networks and connects to a specific network (SSID). Does anyone have a sample code written already for this? I cannot install a ...
2
votes
1answer
3k views
How to Disable Wireless Network Connection Notification Balloon?
I want to programmatically disable the notification I get when I connect to a wireless network. I know there is a way to disable ALL notifications (see here) but is there a way to only disable the one ...
1
vote
1answer
53 views
WlanConnect from wlanapi.dll in Windows XP fails
I am creating a program which will be able to connect automatically to a wireless network. For doing that, I am using a library called ManagedWifi, which uses the library "wlanapi.dll". When I try to ...
1
vote
1answer
170 views
wlanAPI on Windows XP SP3
My WPF application is using ManagedWifi to manually control the wifi adapter to connect to a specified network. However, when I run the application on Windows XP, I keep getting Win32Exception: The ...
1
vote
1answer
126 views
How do I implement a callback from the windows native api in c#?
I have a native api function which looks like:
DWORD WINAPI WlanRegisterNotification(
__in HANDLE hClientHandle,
__in DWORD dwNotifSource,
__in BOOL bIgnoreDuplicate,
...
1
vote
2answers
117 views
Find the total size of an array of objects with only a reference pointer?
So as an overview, I am working with the Wlanapi and I am fairly new to it (native apis in general). I am running into a problem converting a structure from c++ to c#. Right now I have:
Original:
...
1
vote
1answer
205 views
NativeWifi and Windows XP SP2/SP3
I'm using the Native Wifi API and specifically the function WlanGetNetworkBssList.
I am aware that that function is not available in Windows XP SP2 and SP3. I tried installing the hotfix that was ...
1
vote
0answers
44 views
Where to find Online Resources for programming 802.11 and Microsoft Network Monitor SDK etc.?
Where can I find online resources such as eBooks, websites, documents, blogs, research papers on the following; 802.11 NIC Promiscuous Mode and Monitor mode, LibPCap, working with NDIS6 featuring ...
0
votes
1answer
64 views
WlanSetProfile from wlanapi.dll in Windows XP fails
I am creating a program which will be able to connect automatically to a wireless network. For doing that, I am using a library called ManagedWifi, which uses the library "wlanapi.dll". When I try to ...
0
votes
1answer
101 views
Unable to obtain profile of connected network in Vista/7
I have a piece of code implemented using the Managed Native WiFi.
It is used to obtain the profile details of the connected network for displaying on screen.
// Start the wireless ...
0
votes
0answers
304 views
Windows Native Wifi: is it possible to set or delete profile from interface that is currently not present in system?
In my application I add new profile to the wireless interface, and I need to remove this profile from interface even if user had pull out or turn off his wifi device.
Documentation says that "The ...
0
votes
1answer
476 views
connect to secured wireless connection using c#
I am using wlanApi class to connect to wireless connection after I scanned and found networks in my area I want to connect to them but always I get exception "profile xaml is not correct" so I try to ...
0
votes
1answer
556 views
C# wlanapi.dll issue receiving the signal strength
I am currently trying to retrieve the signal strength from a wireless access point using the wlanapi.dll WlanQueryInterface call.
Here is my api declaration
[DllImport("wlanapi.dll", ...
0
votes
1answer
277 views
Can one reset the Windows Native Wifi signal strength update interval?
I'm writing a .Net class library that's to connect to a specific Wifi network whose name is known in advance, when the signal strength is above a certain threshold.
It all works beautifully, EXCEPT ...
0
votes
2answers
38k views
How to detect and disable Windows 7 virtual wifi adapter
Windows 7 has a (neat?) new feature called a 'virtual wireless adapter'. Read about it here:
http://www.istartedsomething.com/20090516/windows-7-native-virtual-wifi-technology-microsoft-research/
...