networking - How to connect to hidden wireless network (no SSID) with windows NETSH command? -


i want connect hidden wireless network (no ssid) netsh command.

my access point has ssid invisible security reasons.

is there way connect simple commands , no user interface???

best regards.

after days founded solution work well.

1: create .xml file example "c:\nossid.xml" , save below code it:

<?xml version="1.0" encoding="us-ascii"?>  <wlanprofile xmlns="http://www.microsoft.com/networking/wlan/profile/v1">      <name>samplewpa2psk</name>      <ssidconfig>          <ssid>              <name>d.mainoffice.access</name>          </ssid>      </ssidconfig>      <connectiontype>ess</connectiontype>      <connectionmode>auto</connectionmode>      <autoswitch>true</autoswitch>      <msm>          <security>              <authencryption>                  <authentication>wpa2psk</authentication>                  <encryption>aes</encryption>                  <useonex>false</useonex>              </authencryption>		  			<sharedkey>  				<keytype>passphrase</keytype>  				<protected>false</protected>  				<keymaterial>**** password ****</keymaterial>  			</sharedkey>          </security>      </msm>  </wlanprofile>

2: run netsh command:

netsh wlan add profile filename="c:\nossid.xml" 

you change own hidden ssid in <name> tag , password in <keymaterial> tag !!!

that's easy , hope useful others.


Comments

Popular posts from this blog

php - How to add and update images or image url in Volusion using Volusion API -

javascript - jQuery UI Splitter/Resizable for unlimited amount of columns -

javascript - IE9 error '$'is not defined -