![如何在無人值守的 Windows 8 安裝過程中跳過個人化頁面(顏色和電腦名稱)?](https://rvso.com/image/1416701/%E5%A6%82%E4%BD%95%E5%9C%A8%E7%84%A1%E4%BA%BA%E5%80%BC%E5%AE%88%E7%9A%84%20Windows%208%20%E5%AE%89%E8%A3%9D%E9%81%8E%E7%A8%8B%E4%B8%AD%E8%B7%B3%E9%81%8E%E5%80%8B%E4%BA%BA%E5%8C%96%E9%A0%81%E9%9D%A2%EF%BC%88%E9%A1%8F%E8%89%B2%E5%92%8C%E9%9B%BB%E8%85%A6%E5%90%8D%E7%A8%B1%EF%BC%89%EF%BC%9F.png)
我目前正在設置無人值守的 Windows 8 設置,但我偶然發現並且無法跳過“個人化”頁面。
- 有趣的部分應該在 OOBE 部分,其中已經填充了一些
<HideXXX>true</HideXXX>
開關。
我的unattend.xml
:
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="windowsPE">
<component xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
<UserData>
<ProductKey>
<WillShowUI>Never</WillShowUI>
<Key>GCRJD-8NW9H-F2CDX-CCM8D-9D6T9</Key>
</ProductKey>
<AcceptEula>true</AcceptEula>
<FullName>Company</FullName>
<Organization>Company</Organization>
</UserData>
<UseConfigurationSet>true</UseConfigurationSet>
<ImageInstall>
<OSImage>
<InstallToAvailablePartition>true</InstallToAvailablePartition>
<InstallFrom>
<MetaData>
<Key>/IMAGE/Name</Key>
<Value>Windows 8.1 Pro</Value>
</MetaData>
</InstallFrom>
</OSImage>
</ImageInstall>
</component>
</settings>
<settings pass="specialize">
<component xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
<AutoLogon>
<Password>
<Value>cwB1AGasdfG8AcgBkAA==</Value>
<PlainText>false</PlainText>
</Password>
<Enabled>true</Enabled>
<LogonCount>2</LogonCount>
<Username>newinstall</Username>
</AutoLogon>
<ProductKey>GCRJD-8NW9H-F2CDX-CCM8D-9D6T9</ProductKey>
<RegisteredOrganization>Company</RegisteredOrganization>
<RegisteredOwner>Company</RegisteredOwner>
<TimeZone>GMT Standard Time</TimeZone>
</component>
<component xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Microsoft-Windows-UnattendedJoin" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
<Identification>
<JoinWorkgroup>WORKGROUP</JoinWorkgroup>
</Identification>
</component>
<component xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Microsoft-Windows-Deployment" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
<RunSynchronous>
<RunSynchronousCommand wcm:action="add">
<Description>Setting Network Location</Description>
<Path>reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t REG_DWORD /d 00000000 /f</Path>
<Order>1</Order>
<WillReboot>OnRequest</WillReboot>
</RunSynchronousCommand>
</RunSynchronous>
</component>
</settings>
<settings pass="oobeSystem">
<component xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
<OOBE>
<HideEULAPage>true</HideEULAPage>
<HideLocalAccountScreen>true</HideLocalAccountScreen>
<HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
<HideOnlineAccountScreens>true</HideOnlineAccountScreens>
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
<NetworkLocation>Work</NetworkLocation>
<ProtectYourPC>3</ProtectYourPC>
</OOBE>
<UserAccounts>
<LocalAccounts>
<LocalAccount wcm:action="add">
<Password>
<Value>cwB1AGasdfG8AcgBkAA==</Value>
<PlainText>false</PlainText>
</Password>
<Name>newinstall</Name>
<Group>Administrators</Group>
</LocalAccount>
</LocalAccounts>
</UserAccounts>
</component>
</settings>
</unattend>
答案1
我發現這,這似乎回答了你(和我)的問題:
在 Windows 影像窗格中(左下角):
- 選擇組件
amd64_Microsoft-Windows-Shell-Setup_6.2.9200.16384_neutral
- 右鍵單擊並選擇新增設定到 Pass 4 專精
- 使用應答檔案屬性和設定窗格,配置以下設定:
ComputerName
:您可以使用a*
作為隨機產生的電腦名稱RegisteredOwner
TimeZone
:拼出來(例如東部標準時間)