How to create WiFi Hotspot when connected to a wireless network with 2 network adapters in Windows 8.1?

1

1

I have 2 wireless network adapters - internal and external, so I want to create hotspot on second one while using 1st one for wireless connection. Apart from Connectify software.

JerryGoyal

Posted 2015-01-02T19:19:43.753

Reputation: 177

This requires third-party software to do this. – Ramhound – 2015-01-02T19:27:32.017

It's fine, but which one? – JerryGoyal – 2015-01-02T19:37:57.187

1you have to bridge the 2 connections. Go to Network and Sharing Center>Advanced Adapter Settings (or something like that), there you will see both wifi adapters. select both of them and right click one and click Bridge. it should create another icon with the bridge name. Try this first. – xR34P3Rx – 2015-01-02T19:40:07.317

@xR34P3Rx it took a while. next step? – JerryGoyal – 2015-01-02T19:46:05.807

go into the new bridge interface that was created, and see what options you have, i havent done this with 2 wifi cards but one wifi and one ethernet. I figured it would be similar. – xR34P3Rx – 2015-01-02T20:04:23.900

I'm sure there is no such option for hotspot in windows. – JerryGoyal – 2015-01-02T20:12:06.183

And why the hell is my Question is downvoted I can't understand. – JerryGoyal – 2015-01-02T20:13:08.350

1well this is why we are trying this arent we? you are getting downvoted because you didnt show any personal effort to figure out this issue on your own. this site is used as a last resort after everything YOU have attempted by yourself. – xR34P3Rx – 2015-01-02T20:18:09.850

@xR34P3Rx I'm pretty sure this does require some effort otherwise it would have been solved by now! – JerryGoyal – 2015-01-03T08:45:20.327

No no no. What i mean is that the way your question is worded makes it look like you did "idk how to do this, I'm going to go to a forum and ask someone to hold my hand without going to Google first". This is what your question shows. Effort on your behalf. If you look at other questions with up votes they will include what the OP has tried, done, his/her setup, etc... You didn't show any of that. – xR34P3Rx – 2015-01-03T13:44:38.443

Now I'm still willing to help, but you must learn to not be dependent on others as an IT. Google is your friend. – xR34P3Rx – 2015-01-03T13:47:11.873

Answers

2

I Figured it out using CMD and providing a small tut so that others can benefit:-

1.To create a virtual WLAN network (HotSpot) enter in Elevated CMD:
netsh wlan set hostednetwork mode=allow ssid=yourhotspotname key=YourPassword
2. Then start the HotSpot by giving the following command: netsh wlan start hostednetwork
3. Go to Adapter settings>choose wifi(external/internal which is connected to Internet)>properties>sharing>tick on allow other network and select newly created virtual adapter(with asterisk sign).
4. Hotspot is now online, to stop it enter in CMD: netsh wlan stop hostednetwork
5. Turning the computer off or rebooting also turns the HotSpot off. However, the HotSpot still exists (it "survives" the reboot); from now on you only need to turn it on when needed with the
netsh wlan start hostednetwork command.

JerryGoyal

Posted 2015-01-02T19:19:43.753

Reputation: 177