Deprecated: Function create_function() is deprecated in /home/871538.cloudwaysapps.com/ejdwdbpxyq/public_html/wp-content/plugins/wp-spamshield/wp-spamshield.php on line 2033
Fix Windows Was Unable to Connect to Selected Network: it can be very annoying when you can’t connect to your WiFi, when you try connecting to WiFi network you get error “Windows was unable to connect to selected network“
(this will display your network name). Its a very common computer problem and I am sure many other people have had this problem, so I have made a quick help guide for you to follow.
We will try different methods to try and help you fix / repair Windows was unable to connect to the selected network error.
Step 1
Disable/Enable the Wireless Card our first fix is a basic disable and enable, this will disable the Wifi card drivers and then enable them again.
Right click on “Computer Icon” and select “Properties”
Now look at top left side of the screen, you should see “Device Manager“. Click on device manager to open it, now navigate to “Network Drivers” and Right click “Wireless Network Adapter” and click “Disable“. wait 30 seconds and the “Enable” it again. Now try and connect to you’re “Wifi Network“.
Step 2
Ping Test – Vista, Windows 7, Windows 8
- Hold the “Windows key“ and “press R” on your keyboard.
- In the Run box that appears, type CMD and click on OK.
- Type the following command: PING google.com
- Was the result successful? or did it fail?
IP Release and Renew – Vista, Windows 7, Windows 8
- Hold the “Windows key“ and “press R” on your keyboard.
- Type CMD into the Run box and press Enter.
- In the command prompt, type ipconfig /release and press Enter.
- Once that completes, type ipconfig /renew and hit Enter.
- Now, type exit and press Enter to close the window.
Repair TCP/IP Stack – Vista, Windows 7, Windows 8
- Hold the “Windows key“ and “press R” on your keyboard.
- In the Run box, type cmd and hit Enter.
- In the Command Prompt, type each of the following commands followed by Enter:
- netsh winsock reset catalog
- netsh int ipv4 reset reset.log
- netsh int ipv6 reset reset.log
- Reboot the machine.
If above is to much for you..why not create a simple .bat file
Copy and paste the text in the code box below into Notepad.
@Echo off
pushd\windows\system32\drivers\etc
attrib -h -s -r hosts
echo 127.0.0.1 localhost>HOSTS
attrib +r +h +s hosts
popd
ipconfig /release
ipconfig /renew
ipconfig /flushdns
netsh int ip reset all
shutdown -r -t 1
del %0