私は数日間、Windows 7用の正しく機能するUnattended.xml回答ファイルを取得しようとしています。技術者がUSBドライブを挿入し、そこから起動して、セットアップを待つことができるWindows7の完全な無人インストールを作成しようとしています。完了します。私が作業している画像は、無人応答ファイルですでにsysprepされており、それ以降はすべての変更が加えられています。 WDS /サーバーのインストールはオプションではなく、事前にイメージ化されたUSBデバイスのこの方法のみであるため、これは時間のかかるプロセスです。
私はtechnet、Serverfault(および他のStackExchangeサイト)、ランダムなブログ、および(おそらく/おそらく)完全な無人インストールを作成するさまざまな回答ファイルオプションを試みているそのようなサイトのいたるところにいます。
WSIMを使用して応答ファイルを管理/書き込み/変更/チェックし、DISMを使用してイメージを管理します。
WinPEパスに入れたオプションに関係なく、常に次のことが起こります。
ユーザーに何も尋ねずに、セットアップを開始、処理、および完了する必要があります
私が持っている最新のXML回答ファイルは次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-Microsoft-com:unattend">
<settings pass="windowsPE">
<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>
<UILanguage>en-us</UILanguage>
<InputLocale>0409:00000409</InputLocale>
<SystemLocale>en-us</SystemLocale>
<UserLocale>en-us</UserLocale>
</component>
<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 wcm:action="add">
<Order>1</Order>
<Size>100</Size>
<Type>Primary</Type>
</CreatePartition>
<CreatePartition wcm:action="add">
<Order>2</Order>
<Type>Primary</Type>
<Extend>true</Extend>
</CreatePartition>
</CreatePartitions>
<ModifyPartitions>
<ModifyPartition wcm:action="add">
<Format>NTFS</Format>
<Label>System</Label>
<Order>1</Order>
<Active>true</Active>
<PartitionID>1</PartitionID>
</ModifyPartition>
<ModifyPartition wcm:action="add">
<Format>NTFS</Format>
<Label>OS</Label>
<Order>2</Order>
<PartitionID>2</PartitionID>
</ModifyPartition>
</ModifyPartitions>
</Disk>
</DiskConfiguration>
<ImageInstall>
<OSImage>
<InstallTo>
<DiskID>0</DiskID>
<PartitionID>1</PartitionID>
</InstallTo>
<InstallFrom>
<MetaData wcm:action="add">
<Key>/IMAGE/INDEX</Key>
<Value>1</Value>
</MetaData>
</InstallFrom>
<WillShowUI>OnError</WillShowUI>
</OSImage>
</ImageInstall>
<UserData>
<AcceptEula>true</AcceptEula>
<ProductKey>
<Key>----</Key>
<WillShowUI>----</WillShowUI>
</ProductKey>
<FullName>----</FullName>
<Organization>----</Organization>
</UserData>
</component>
</settings>
<settings pass="specialize">
<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">
<CopyProfile>true</CopyProfile>
<TimeZone>----</TimeZone>
<ProductKey>----</ProductKey>
<RegisteredOrganization>----</RegisteredOrganization>
<RegisteredOwner>----</RegisteredOwner>
</component>
<component name="Microsoft-Windows-Deployment" 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">
<RunSynchronous>
<RunSynchronousCommand wcm:action="add">
<Path>Net User administrator /active:yes</Path>
<Order>1</Order>
</RunSynchronousCommand>
</RunSynchronous>
</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>0409:00000409</InputLocale>
<SystemLocale>en-us</SystemLocale>
<UILanguage>en-us</UILanguage>
<UserLocale>en-us</UserLocale>
</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>
<NetworkLocation>Work</NetworkLocation>
<ProtectYourPC>1</ProtectYourPC>
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
</OOBE>
<RegisteredOrganization>----</RegisteredOrganization>
<RegisteredOwner>----</RegisteredOwner>
<TimeZone>TZ</TimeZone>
<UserAccounts>
<AdministratorPassword>
<Value>aBcDe</Value>
<PlainText>false</PlainText>
</AdministratorPassword>
<LocalAccounts>
<LocalAccount wcm:action="add">
<Password>
<Value>aBcDe</Value>
<PlainText>false</PlainText>
</Password>
<Description>Local Administrator</Description>
<DisplayName>Administrator</DisplayName>
<Group>Administrators</Group>
<Name>Administrator</Name>
</LocalAccount>
</LocalAccounts>
</UserAccounts>
<AutoLogon>
<Password>
<Value>aBCdE</Value>
<PlainText>false</PlainText>
</Password>
<Enabled>true</Enabled>
<LogonCount>5</LogonCount>
<Username>administrator</Username>
<Domain></Domain>
</AutoLogon>
</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>0409:00000409</InputLocale>
<SystemLocale>en-us</SystemLocale>
<UserLocale>en-us</UserLocale>
<UILanguage>en-us</UILanguage>
</component>
</settings>
<cpi:offlineImage cpi:source="wim:wimfile#Windows 7 Professional" xmlns:cpi="urn:schemas-Microsoft-com:cpi" />
</unattend>
他の誰かがそのような状況が発生した経験がありますか、またはそれが本当に無人になるように私の回答ファイルを修正する方法を知っていますか?
USBドライブのルートにunattend.xmlを配置し、名前をautounattend.xmlに変更することで、この問題を解決しました。その変更後、install.wimのsysprepディレクトリにあるunattend.xmlを使用して、Windows7のセットアップが無人で続行されます。
[〜#〜] mdt [〜#〜] キットをダウンロードしようとしたので、xmlファイルを手動で編集する必要はありませんか?
Win 7イメージを使い始めたときにこのガイドを使用しましたが、非常に役立ちました: http://theitbros.com/sysprep-a-windows-7-machine-%E2%80%93-start-to-終了
Sysprepを正しく覚えていれば、xmlをsystem32フォルダーのどこかにコピーし、そのコピーを残りのセットアップに使用します。
私の電話を投稿します、これがオフの場合は泣いてください。