Page 1 of 2

Connect to net with shortcut

Posted: Mar 24th, ’19, 16:54
by davidp
I have set a textexpander to connect to net by using network center notification area popup ,but it shows a window and i have to select each time an ssid to connect,I have 2 ssid's and i want to set a textexpander to connect to any of the ssid's without showing the popup

Re: Connect to net with shortcut

Posted: Mar 24th, ’19, 17:00
by Tom

Re: Connect to net with shortcut

Posted: Mar 24th, ’19, 17:07
by davidp
Can i use that script in fk or installing ahk is required

Re: Connect to net with shortcut

Posted: Mar 24th, ’19, 17:24
by davidp
script is --

mySSD = ABC1
myPass = 123pass
Run,%Comspec% netsh wlan connect ssid=%mySSD% key=%myPass%,, ; Hide :?:

but it is showing command prompt when run,will u modify such that i set a text expander for it

Re: Connect to net with shortcut

Posted: Mar 24th, ’19, 18:01
by Tom
No need to install AutoHotkey. Try the following (Type: Command):

Code: Select all

mySSD:="ABC1"
myPass:="123pass"
Run,%Comspec% netsh wlan connect ssid=%mySSD% key=%myPass%,, Hide

Re: Connect to net with shortcut

Posted: Mar 27th, ’19, 16:23
by davidp
I used the above with a textexpander string assigned to it and nothing happens after i press the string

Re: Connect to net with shortcut

Posted: Apr 3rd, ’19, 08:19
by davidp
give answer

Re: Connect to net with shortcut

Posted: Apr 7th, ’19, 08:44
by davidp
sir,somehow make it work

Re: Connect to net with shortcut

Posted: Apr 21st, ’19, 10:50
by davidp
In return for krishna's photo's i posted i want this feature

Re: Connect to net with shortcut

Posted: Apr 21st, ’19, 16:21
by Tom
Have you tried all alternatives posted in https://www.autohotkey.com/boards/viewt ... 4&p=208816
Also try to search for other solutions there.