Show and connect to available networks - Forum

Forum Navigation
You need to log in to create posts and topics.

Show and connect to available networks

Hi,

Can I create an app in VisualNeo Win that show available networks in it's UI (Without windows wifi popup) and connect to selected network?

Hi,

it must be some like this

edit and complete the correct syntax:

run "netsh wlan show networks > nets.txt"

Fileread "nets.txt"  "myresultvar" etc

Filecount "myresultvar  "#10" "items"

For i = 1 to items

StrParse "Name", etc

next

and so on.

Greetings from Buenos Aires,

David de Argentina

StrParse

Ok but I want get and show available WIFI Networks dynamically on any user system.

Then users select an network and enter it's password to connect

Quote from DaviddeArgentina on October 5, 2024, 4:40 pm

Hi,

it must be some like this

edit and complete the correct syntax:

run "netsh wlan show networks > nets.txt"

Fileread "nets.txt"  "myresultvar" etc

Filecount "myresultvar  "#10" "items"

For i = 1 to items

StrParse "Name", etc

next

and so on.

Greetings from Buenos Aires,

David de Argentina

StrParse

Thanks Dear @daviddeargentina.

I was able to write and run the code based on your description. But unfortunately, even though the command was executed correctly, a file is not saved to list the connections!

It's a great time for you to investigate what Google offers as a solution for the netsh command...

tilesoft has reacted to this post.
tilesoft

Thanks Bro.

And now there is just one problem. How can connect to and SSID By getting password from user?!

I think I've already helped you for free.

If you need me to do a development to show you how to select a Wi-Fi network and connect it, I can gladly do the development for you, at an additional cost.

tilesoft has reacted to this post.
tilesoft

Thank you for all your help. Today I managed to get the complete list of connections and even connect to the desired connection. I will send the project file in a separate post.