Hello everyone,
I'm trying to build a WDS Server (Windows Server 2016) to deploy Windows 10 to client.
I try to setup an unattend.xml file for clients connect to WDS Server without typing username password, but it doens't work.
Here is my unattend.xml
<?xml version="1.0" encoding="utf-8"?><unattend xmlns="urn:schemas-microsoft-com:unattend"><settings pass="windowsPE"><component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><WindowsDeploymentServices><Login><Credentials><Domain>deploy.local</Domain><Password>P@ssw0rd</Password><Username>administrator</Username></Credentials></Login><ImageSelection><InstallImage><Filename>install.wim</Filename><ImageGroup>group1</ImageGroup><ImageName>Windows 10 Pro</ImageName></InstallImage><InstallTo><DiskID>0</DiskID><PartitionID>1</PartitionID></InstallTo></ImageSelection></WindowsDeploymentServices></component></settings><cpi:offlineImage cpi:source="wim:c:/iso/windows10_20_7_2020_downfrommicrosoft/sources/install.wim#Windows 10 Pro" xmlns:cpi="urn:schemas-microsoft-com:cpi" /></unattend>
In WDS Server Properties, tab Client, I enabled checklist "Enable unattened installation" and browse to the unattend.xml.
But it doesn't work. Client still ask credentials to connect to WDS Server. Please anyone help me this problem? Thank you.