Location:
State:
Carrier
Country
Status

How to specify wireless configuration in an unattend.xml file.


I'm trying to Win10 deploy using sysprep and I want to specify DNS suffix in an unattend.xml file, it is not only "Local Area Connection" but also wireless adapter. How can I modify an unattend.xml file?
And which part of the name of the wireless adapter should I use as in "<Identifier>Local Area Connection</Identifier>" instead?

<Interfaces>
<Interface wcm:action=”add”>
<Ipv4Settings>
<DhcpEnabled>false</DhcpEnabled>
</Ipv4Settings>
<Identifier>Local Area Connection</Identifier>
<UnicastIpAddresses>
<IpAddress wcm:action=”add” wcm:keyValue=”1″>10.123.242.51/24</IpAddress>
</UnicastIpAddresses>
<Routes>
<Route wcm:action=”add”>
<Identifier>0</Identifier>
<Prefix>0.0.0.0/0</Prefix>
<Metric>20</Metric>
<NextHopAddress>10.123.242.1</NextHopAddress>
</Route>
</Routes>
</Interface>
</Interfaces>

This actually ends up being an interesting question. See this discussion on the TechNet forum for two ways to attack this: one, through the kinds of data you need for unattend.xml, the other through GPO settings that apply post-install.
HTH,

How to specify wireless configuration in an unattend.xml file.