Page 1 of 1

netsh wlan add

Posted: Tue Jun 12, 2012 9:50 am
by casaestrada
I have an HTA that I am trying to modify which will allow my staff to simply select a location via check and then using sub wireless will automatically load the xml from a network drive. Problem is I can do this via vbs and bat but from hta i cant get the correct parameters to work. Any ideas?? Should I map drive first or argghhhh - I'm stuck.

Code: Select all

Sub Wireless 
SET WSHShell = CreateObject("WScript.Shell") 
WSHShell.Run "Netsh wlan add profile filename="xxxxxxxxxxxxxxxxxxx.xml" user=all >>C:xxxxx.txt 
 Msgbox "Installing xxxxx Wireless" 
        End If

netsh wlan add

Posted: Tue Jun 12, 2012 10:56 am
by casaestrada
I'm getting "undetermined string constant "

Code: Select all

WSHShell.Run "Netsh wlan add profile filename=""xxxxxxxxxxxxxxxxxxx.xml""user=all >>C:xxxxx.txt"
even if i
remove user=all >>C:xxxxx.txt"
or
add WSHShell.Run "Netsh wlan add profile filename=""xxxxxxxxxxxxxxxxxxx.xml user=all""

i get same error