2

I'm using MDT 2012 to deploy Windows 7 Pro x64. How can I include wireless profiles for several different WiFi networks? There is no domain, all machines are on a workgroup using group policy is not an option.

Is there a Task Sequence, script or other option to automatically connect to WiFi networks?

MDT Guy
  • 295
  • 2
  • 10
Sandy
  • 656
  • 4
  • 8
  • 21

1 Answers1

5

Perhaps you could try exporting the profiles according to linked process and the running the exported executable during a task sequence upon deployment.

http://www.howtogeek.com/howto/4081/easily-backup-import-your-wireless-network-settings-in-windows-7/

There's also a command line option to export/import wireless profile using netsh:

http://mantraaz.wordpress.com/2010/10/18/script-to-add-wireless-profile/

Hope that helps.

Noah Stahl
  • 453
  • 2
  • 8
  • 2
    The wordpress site has the solution I'm looking for: `netsh wlan show networks` Export WLAN profile to XML file `netsh wlan export profile name=”SSID”` Copy the XML file to MDT DeploymentShare. In MDT create a new Task Sequence for Run Command Line: `netsh wlan add profile filename=”c:\temp\filename.xml”` – Sandy Jun 07 '13 at 23:06