Saturday 19 September 2015

Share Internet!

Hi Friends,
               Are you paying for Internet separately for Laptop, PC and mobile phones? Get one connection and share Internet to other devices. Here are the following steps to share Internet from your Laptop.

1. Run CMD with administrator rights.
2. Type these commands with one followed by another
(i) netsh wlan set hostednetwork mode=allow ssid=NAME key=PASSWORD
(ii)netsh wlan start hostednetwork

(the name and password could be anything as you desire)

3.Type ncpa.cpl in the RUN command.
4. Choose the internet network you normally use. Then double click and navigate to properties and then to the sharing. Check the box and choose the network that corresponds to the network you just created.
5. Click OK and done.
6. A WIFI network would be created and you can use it to connect to the internet in your Android device.

Command-line to delete the virtual adapter

Open the Command Prompt with Administrator rights and enter the following command:
netsh wlan stop hostednetwork
You will receive a message confirming that the wireless hosted network stopped. However it is not yet disabled. In order to disable it, enter this command:
netsh wlan set hostednetwork mode=disallow

The result is the message "The hosted network mode has been set to disallow". You'll also notice that the virtual adapter is no longer listed in the Network and Sharing Center.
Furthermore, if you want to double-check the status of the hosted network, you can run the following command:
netsh wlan show settings
It should say : "Hosted network mode allowed in WLAN service: No".
Command-line to delete/forget one network
netsh wlan show profiles
Identify the name of the wireless network profile you want removed, then type the following command to remove it:
netsh wlan delete profile name="NAME"