Curious if this is even possible
Have a USB, with an auto execute file, that runs a batch file, with a script that would go something like,…
Netsh wlan show profile > F:text.txt
### the batch program proceeds to
Look at the profiles, and run this for each one
Netsh wlan show profile Pname1 type=clear > ; F: text.txt
Netsh wlan show profile Pname2 type=clear > ; F: text.txt
Netsh wlan show profile Pname3 type=clear > ; F: text.txt
Netsh wlan show profile Pname4 type=clear > ; F: text.txt
Netsh wlan show profile Pname6 type=clear > ; F: text.txt
And when it’s done with the loop (runs out of names)
It exits
Is possible to create this loop where it grabs each name and enters automatically using a batch file?
Comments