Help - Search - Members - Calendar
Full Version: Assigning a Fixed IP adress to the computer
MSFN Forums > Unattended Windows Discussion & Support > Unattended Vista

   
Google Internet Forums Unattended CD/DVD Guide
Minus30
As the title says, how do I fix the IP adress of the computer during the unattended installation.
I take it I should add it to the sysprep xml file?
maxXPsoft
Autounattend.xml, works for me during <settings pass="specialize">
CODE
    <component name="Microsoft-Windows-DNS-Client" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <Interfaces>
        <Interface wcm:action="add">
          <DNSServerSearchOrder>
            <IpAddress wcm:action="add" wcm:keyValue="1">xxx.xx.xxx.xxx</IpAddress>
            <IpAddress wcm:action="add" wcm:keyValue="2">xxx.xx.xxx.xxx</IpAddress>
          </DNSServerSearchOrder>
          <DNSDomain>192.xxx.xxx.xxx</DNSDomain>
          <Identifier>Local Area Connection</Identifier>
        </Interface>
      </Interfaces>
    </component>
Minus30
I'll try that, thanks!
Minus30
That only worked to setup my DNS servers... I found this on another forum, in progress of testing it now

QUOTE
Ok,

I got this to work the static IP, subnet mask and default gateway. The
<identifier> by default is Local Area Connection but could be somthing
else. The IPaddress value with /24 give a subnet mask of 255.255.255.0
/16 would give 255.255.0.0 the nexthopipaddress gives the default
gateway. The prefix of 0.0.0.0/0 is something that finally got this to
work. I was getting setup error before this.

CODE
<settings pass="specialize">
<component name="Microsoft-Windows-TCPIP" language="neutral"
processorArchitecture="x86" publicKeyToken="31bf3856ad364e35"
versionScope="nonSxS"
xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Interfaces>
<Interface>
<Identifier>Local Area Connection</Identifier>
<Ipv4Settings>
<DhcpEnabled>false</DhcpEnabled>
</Ipv4Settings>
<UnicastIpAddresses>
<IpAddress wcm:keyValue="1">192.168.0.1/24</IpAddress>
</UnicastIpAddresses>
<Routes>
<Route wcm:action="add">
<Identifier>0</Identifier>
<Prefix>0.0.0.0/0</Prefix>
<NextHopAddress>192.168.0.254</NextHopAddress>
<Metric>20</Metric>
</Route>
</Routes>
</Interface>
</Interfaces>
</component>
</settings>
maxXPsoft
I was looking at an old xml I had but will try what you have also.
Minus30
when it didn't work, I used netsh commands at the first logoncommands pass
Google Internet Forums Unattended CD/DVD Guide
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.