167 | 168 | 169 |
What is this for?
172 |If you need to configure your Android or Windows devices, using a Wi-Fi network - you can either use the GUI, or this.
173 | Sometimes the option you need isn't in the UI - so as a workaround, you can find out what the manual option is and generate it.
174 | This is meant to be a supplement to that.
176 |
Both Android & Windows use the same XML format, as far as I'm aware (there might be fields that vary).
177 | Use this as the basis, and enjoy!
178 |
179 |
This site will help generate a configuration profile based on the network information you provide.
180 | Using this, you can import the profile into your mobile devices (via a method such as an MDM).
You can see all of the modified output in the bottom as aqua text.
182 |183 |
All of this is run client-side, within the browser.
184 |185 |
Extra stuff:
186 | Wireless profile samples187 | XML Profile Elements 188 |
191 | 192 | 193 |
Fill out your Wi-Fi network details below. This only supports "Personal" connections.
196 | 197 | 200 | 293 |295 | 296 |
Generated Profile
303 | 304 |308 | 309 |
<?xml version="1.0"?>
310 | <WLANProfile xmlns="http://www.microsoft.com/networking/WLAN/profile/v1">
311 | <name>Network Name</name>
312 | <SSIDConfig>
313 | <SSID>
314 | <hex>53534944</hex>
315 | <name>SSID</name>
316 | </SSID>
317 | <nonBroadcast>false</nonBroadcast>
318 | </SSIDConfig>
319 | <connectionType>ESS</connectionType>
320 | <connectionMode>auto</connectionMode>
321 | <MSM>
322 | <security>
323 | <authEncryption>
324 | <authentication>open</authentication>
325 | <encryption>none</encryption>
326 | <useOneX>false</useOneX>
327 | </authEncryption>
328 | <sharedKey>
329 | <keyType>passPhrase</keyType>
330 | <protected>false</protected>
331 | <keyMaterial></keyMaterial>
332 | </sharedKey>
333 | </security>
334 | </MSM>
335 | </WLANProfile>
336 |
337 |