Jump to content

Recommended Posts

Posted

I have set on my XML file this option:

<NetworkLocation>Home</NetworkLocation>

Which I believed was to prevent this window from coming up:

 

cMMNYn7.png
 

However as you can see the window keeps coming up every time I install my ISO.

 

Is there a way to preset either register or some other command on the XML I may have missed to prevent it from further asking me what my network is?

 

Here is my full XML:

<?xml version="1.0" encoding="utf-8"?><unattend xmlns="urn:schemas-microsoft-com:unattend">    <settings pass="windowsPE">        <component name="Microsoft-Windows-Setup" 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">            <DiskConfiguration>                <WillShowUI>OnError</WillShowUI>                <Disk wcm:action="add">                    <DiskID>0</DiskID>                    <WillWipeDisk>true</WillWipeDisk>                    <CreatePartitions>                        <CreatePartition>                            <Order>1</Order>                            <Type>Primary</Type>                            <Size>100</Size>                        </CreatePartition>                        <CreatePartition>                            <Order>2</Order>                            <Type>Primary</Type>                            <Extend>true</Extend>                        </CreatePartition>                    </CreatePartitions>                    <ModifyPartitions>                        <ModifyPartition wcm:action="add">                            <Active>true</Active>                            <Format>NTFS</Format>                            <Label>system</Label>                            <Order>1</Order>                            <PartitionID>1</PartitionID>                        </ModifyPartition>                        <ModifyPartition wcm:action="add">                            <Format>NTFS</Format>                            <Label>Main</Label>                            <Letter>C</Letter>                            <Order>2</Order>                            <PartitionID>2</PartitionID>                        </ModifyPartition>                    </ModifyPartitions>                </Disk>            </DiskConfiguration>            <Display>                <ColorDepth>32</ColorDepth>                <HorizontalResolution>800</HorizontalResolution>                <RefreshRate>60</RefreshRate>                <VerticalResolution>600</VerticalResolution>            </Display>            <DynamicUpdate>                <Enable>false</Enable>            </DynamicUpdate>            <UserData>                <AcceptEula>true</AcceptEula>            </UserData>            <ImageInstall>                <OSImage>                    <InstallFrom>                        <MetaData wcm:action="add">                            <Key>/IMAGE/INDEX</Key>                            <Value>1</Value>                        </MetaData>                    </InstallFrom>                    <InstallTo>                        <DiskID>0</DiskID>                        <PartitionID>2</PartitionID>                    </InstallTo>                </OSImage>            </ImageInstall>        </component>        <component name="Microsoft-Windows-International-Core-WinPE" 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">            <SetupUILanguage>                <UILanguage>en-US</UILanguage>            </SetupUILanguage>            <InputLocale>0416:00000416</InputLocale>            <SystemLocale>en-US</SystemLocale>            <UILanguage>en-US</UILanguage>            <UILanguageFallback>en-US</UILanguageFallback>            <UserLocale>en-US</UserLocale>        </component>    </settings>    <settings pass="specialize">        <component name="Microsoft-Windows-UnattendedJoin" 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">            <Identification>                <JoinWorkgroup>Workgroup</JoinWorkgroup>            </Identification>        </component>        <component name="Microsoft-Windows-International-Core" 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">            <InputLocale>0416:00000416</InputLocale>            <SystemLocale>en-US</SystemLocale>            <UILanguage>en-US</UILanguage>            <UILanguageFallback>en-US</UILanguageFallback>            <UserLocale>en-US</UserLocale>        </component>        <component name="Microsoft-Windows-Shell-Setup" 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">            <AutoLogon>                <Password>                    <Value>UABhAHMAcwB3AG8AcgBkAA==</Value>                    <PlainText>false</PlainText>                </Password>                <Enabled>true</Enabled>                <Username>Administrator</Username>            </AutoLogon>        </component>        <component name="Microsoft-Windows-Security-Licensing-SLC-UX" 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">            <SkipAutoActivation>true</SkipAutoActivation>        </component>    </settings>    <settings pass="oobeSystem">        <component name="Microsoft-Windows-Shell-Setup" 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">            <OOBE>                <HideEULAPage>true</HideEULAPage>                <ProtectYourPC>3</ProtectYourPC>                <NetworkLocation>Home</NetworkLocation>                <SkipMachineOOBE>true</SkipMachineOOBE>                <SkipUserOOBE>true</SkipUserOOBE>            </OOBE>        </component>    </settings></unattend>

Its a single OS ISO x86.

Posted

Yes that's it, after you install the vmware tools a network driver is also installed. Windows will treat this like a new adapter and the previous unattended settings will not apply (I suspect)

Posted (edited)

 Windows will treat this like a new adapter and the previous unattended settings will not apply (I suspect)

 

You are absolutely correct, only way to circumvent that, is integrate necessary Network Adapter drivers into Wim, in this occasion VMware ones... ;)

Edited by Etz
Posted (edited)

I just noticed that this happens before the VMWare Tools is even installed, so I guess the first driver used is already there.

Edited by namednoob

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...