USB 스틱에서 설치하는 Windows 임베디드 8 시스템 설치 프로세스를 만들어야합니다. 설치 프로세스는 가능한 한 사용자 상호 작용이 적어야하며, 설치하는 사람은 가능한 한 적은 시간 만 사용하여 베이비 시터를 사용하는 것이 좋습니다.WES8을 설치할 때 WindowsPE 단계 후에 컴퓨터를 종료 할 수 있습니까?
이 목적으로 WES8 설치의 WindowsPE 단계 후에 컴퓨터를 종료해야합니다. Embedded core 구성의 "WindowsPE"부분에서 Restart을 "종료"로 설정하려고했지만 컴퓨터가 여전히 재부팅되고 컴퓨터가 재부팅되면 Windows 설치가 다시 시작됩니다.
제 질문은 : WindowsPE 단계 후에 WES8 설치를 종료하는 방법이 있습니까?
USB에서 부팅하기 위해 수동 개입이 필요하도록 BIOS를 업데이트했지만 설치 및 업그레이드 프로세스가 내가 원하는 것보다 더 복잡해졌습니다. 컴퓨터 재부팅, 그것은 USB 스틱을 다시 대신 신선한 설치된 파티션에서 시작 시작할 때 때문에
<settings pass="windowsPE">
<component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<UserData>
<ProductKey>
<Key></Key>
<WillShowUI>Never</WillShowUI>
</ProductKey>
<AcceptEula>true</AcceptEula>
<Organization></Organization>
</UserData>
<ImageInstall>
<OSImage>
<WillShowUI>OnError</WillShowUI>
<InstallTo>
<DiskID>0</DiskID>
<PartitionID>2</PartitionID>
</InstallTo>
</OSImage>
</ImageInstall>
<DiskConfiguration>
<WillShowUI>OnError</WillShowUI>
<Disk wcm:action="add">
<CreatePartitions>
<CreatePartition wcm:action="add">
<Order>1</Order>
<Size>350</Size>
<Type>Primary</Type>
<Extend>false</Extend>
</CreatePartition>
<CreatePartition wcm:action="add">
<Extend>true</Extend>
<Order>2</Order>
<Type>Primary</Type>
</CreatePartition>
</CreatePartitions>
<ModifyPartitions>
<ModifyPartition wcm:action="add">
<Order>1</Order>
<PartitionID>1</PartitionID>
<Label>System</Label>
<Format>NTFS</Format>
<Active>true</Active>
</ModifyPartition>
<ModifyPartition wcm:action="add">
<Order>2</Order>
<PartitionID>2</PartitionID>
<Label>Windows</Label>
<Format>NTFS</Format>
<Letter>C</Letter>
</ModifyPartition>
</ModifyPartitions>
<WillWipeDisk>true</WillWipeDisk>
<DiskID>0</DiskID>
</Disk>
</DiskConfiguration>
<UseConfigurationSet>true</UseConfigurationSet>
<Restart>Shutdown</Restart>
</component>
<component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SetupUILanguage>
<UILanguage>en-US</UILanguage>
<WillShowUI>Never</WillShowUI>
</SetupUILanguage>
<InputLocale>en-US</InputLocale>
<SystemLocale>en-US</SystemLocale>
<UILanguage>en-US</UILanguage>
<UILanguageFallback>en-US</UILanguageFallback>
<UserLocale>en-US</UserLocale>
</component>
<component name="Microsoft-Windows-MMCSS" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SystemResponsiveness>20</SystemResponsiveness>
<Start>3</Start>
</component>
</settings>