Skip to content

Instantly share code, notes, and snippets.

@iturki
Last active August 29, 2015 14:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iturki/2af8365f09290b64aa81 to your computer and use it in GitHub Desktop.
Save iturki/2af8365f09290b64aa81 to your computer and use it in GitHub Desktop.
How to Create a Wireless Hotspot in Windows 7

Step 1: Setting the wireless hotspot info:

Run cmd as Administrator and type the following:

> netsh wlan set hostednetwork mode=allow ssid=HotspotName key=HotspotPass keyUsage=persistent
HotspotName: The Hotspot SSID (Hotspot name)
HotspotPass: The Hotspot Password.

Step 2: Enabling the Microsoft Virtual WiFi Miniport Adapter:

  1. go to: Control Panel\Network and Internet\Network Connections
  2. Now you should see a new connection. Usually, it's name will be Wireless Network Connection 2.
  3. If it is Disabled, Right-click on it and choose "Enable".
  4. Right-click on the Connection you want to share "Wireless/Lan", and choose "Properties"
  5. Go to "Sharing" tab and Click on "Allow other Network Users to connect through this Computer's Internet Connection".
  6. Click OK.

Step 3: Starting the hotspot:

Go back to the cmd, and typy the following:

> netsh wlan start hostednetwork

The cmd should reply back with: The hosted network started.

That's it!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment