2

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.

wonea
  • 1,877
Mike
  • 21

1 Answers1

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.

rtf
  • 12,826