USBスティックからインストールするWindows組み込みシステムインストールプロセスを作成する必要があります。インストールプロセスはできるだけユーザーのやりとりが少なくなければならず、インストールする人はできるだけ小さな時間を使用してベビーシッターを行うことが望ましいです。WES8をインストールするとき、WindowsPEステップの後にコンピュータをシャットダウンする方法はありますか?
この目的のために、WES8インストールのWindowsPEステップの後にコンピュータをシャットダウンする必要があります。私はRestartをEmbedded Core構成の "WindowsPE"部分で "シャットダウン"に設定しようとしましたが、まだコンピュータを再起動し、コンピュータが再起動するとWindowsのインストールがやり直されます。
私の質問は:WES8のインストールをWindowsPEステップの後にコンピュータをシャットダウンする方法はありますか?
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>