Script to load Wi-Fi profiles

2

1

I'm using Windows 7 x64 and I need a script to load 2 wifi profiles. I have exportred the XMLs from a current system. I just need a way to deploy the profiles to people who don't know the first thing about Windows.

I would prefer that I could embed the profiles inside the script if possible. These are networks that are not broadcasting their SSIDs.

Mike

Posted 2013-02-21T22:24:29.697

Reputation: 21

Question was closed 2013-02-22T11:38:17.467

Sounds like your trying to make your own war driving software 'o.o – Griffin – 2013-02-21T23:21:26.493

If so I want beta access. – Griffin – 2013-02-21T23:22:17.927

Answers

1

All you really need is a batch script that does netsh wlan add profile filename=foobar.xml for each profile. Make sure you save the passwords in the clear though as per this question. It's going to be a lot easier to simply keep the XML files with the script rather than trying to combine them in a single file.

Tanner Faulkner

Posted 2013-02-21T22:24:29.697

Reputation: 11 948