Windows

WDS 無人值守文件(語言和 WDS 身份驗證)

  • February 9, 2021

我希望能夠自動化初始語言選擇和 WDS 身份驗證憑據。我猜我不能在 WDS 提供的應答文件中設置它?我怎樣才能做到這一點?

在 WDS 中有兩個無人參與文件。一個用於安裝映像,一個用於引導映像。您在啟動映像的應答文件的 WinPE 部分中設置了您要詢問的設置。

我遇到了這個問題,奇怪的是答案文件中有兩個地方可以設置語言,一個用於初始安裝,一個用於 OOBE。對於初始安裝,我總是使用美國(因為其他任何東西似乎都不起作用),然後為 OOBE 設置您自己的國家/語言:

PE.xml:

<component name="Microsoft-Windows-International-Core-WinPE" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="amd64">
 <SetupUILanguage>
   <UILanguage>en-US</UILanguage>
 </SetupUILanguage>
</component>

OOBE.xml:

<settings pass="oobeSystem">
       <component name="Microsoft-Windows-International-Core" 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">
           <InputLocale>en-gb</InputLocale>
           <SystemLocale>en-gb</SystemLocale>
           <UILanguage>en-gb</UILanguage>
           <UserLocale>en-gb</UserLocale>
       </component>

希望有幫助

吉姆

引用自:https://serverfault.com/questions/464243