windows无法启动安装过程win10 windows10无法启动安装过程

以前男人可以去家里露瓷砖,现在男人可以装系统了。大家好,我是班班。我带你去装系统,学电脑,解决电脑故障。今天我们来学习一下如何在PE下安装windows10操作系统(系统无法启动时

本文最后更新时间:  2023-03-19 01:41:43

以前男人可以去家里露瓷砖,现在男人可以装系统了。大家好,我是班班。我带你去装系统,学电脑,解决电脑故障。今天我们来学习一下如何在PE下安装windows10操作系统(系统无法启动时)。

首先我们需要用u盘做一个PE启动盘。网上有很多制作启动盘的方法,这里就不唠叨了。我们需要知道的是,基本上,PE的启动盘里有一个叫WinNTSetup的工具。运行界面如下:

在使用这个工具时,我们需要理解几个要点及其概念。

选择Windows安装源。支持Iso光盘镜像和wim镜像。意思是我们下载Windows S10的安装镜像iso文件,放在u盘或者硬盘里,在这里选中就可以了。

选择引导驱动器,选择安装驱动器。这里的驱动器就是我们所说的分区。Windows系统,文件分为两部分,一部分是用来引导操作系统的引导文件,另一部分是操作系统本身的文件。这两个文件可以放在两个不同的分区,也可以在MBR磁盘模式下(Lagecy启动)放在同一个分区。对于GPT磁盘模式(UEFI引导),引导文件在ESP分区,系统分区就是我们经常看到的c盘。

引导分区通常有100MB到300MB的容量,很容易识别,是磁盘的第一个分区。

然而,有时候我们看不到引导分区,也无法选择它。这时候我们需要给没有显示的引导分区分配一个盘符,然后就可以看到了。下图是没有分配盘符的ESP分区的位置,而驱动器C是我们的系统分区(安装驱动器),所以可以忽略MSR分区。

选择启动驱动器和安装驱动器后,最好将两者都格式化。

如果您的计算机处于MBR磁盘模式,并且没有分配独立的引导分区,那么引导驱动器和安装驱动器都将选择C驱动器。

在选项中的“版本”下拉列表框中,我们选择需要安装的系统版本,即家庭版、专业版、企业版等。这是因为Microsoft wim映像文件(一个映像文件)可以同时包含多个系统版本。

接下来我们要跳过复杂的设置,比如设置账号,选择语言,设置隐私等。,并直接使用管理员帐户登录系统。为了实现这个目标,我们需要一个自动响应文件来代替我们响应用户输入。以下是董事会已经完成的工作。你只需要用记事本创建一个xml类型的文本文件,然后把下面的内容粘贴进去保存。在本例中,它是unattend.xml

<?xml version="1.0" encoding="utf-8"?><unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="generalize"> <component name="Microsoft-Windows-PnpSysprep" 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"> <DoNotCleanUpNonPresentDevices>true</DoNotCleanUpNonPresentDevices> <PersistAllDeviceInstalls>true</PersistAllDeviceInstalls> </component> </settings> <settings pass="specialize"> <component name="Microsoft-Windows-Deployment" 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"> <RunSynchronous> <RunSynchronousCommand wcm:action="add"> <Order>1</Order> <Path>net user administrator /active:yes</Path> <WillReboot>Never</WillReboot> <Description>Enable Admin Account</Description> </RunSynchronousCommand> </RunSynchronous> </component> <component name="Microsoft-Windows-Shell-Setup" 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"> <CopyProfile>true</CopyProfile> <TimeZone>China Standard Time</TimeZone> </component> <component name="Microsoft-Windows-UnattendedJoin" 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"> <Identification> <JoinWorkgroup>WORKGROUP</JoinWorkgroup> </Identification> </component> <component name="Microsoft-Windows-MicrosoftEdgeBrowser" 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"> <FavoriteBarItems> <FavoriteBarItem wcm:action="add"> <ItemFavIconFile>http://dh.lanfutun.com/favicon.ico</ItemFavIconFile> <ItemKey>lanfutun</ItemKey> <ItemName>官网导航</ItemName> <ItemUrl>http://dh.lanfutun.com</ItemUrl> </FavoriteBarItem> </FavoriteBarItems> </component> </settings> <settings pass="oobeSystem"> <component name="Microsoft-Windows-Shell-Setup" 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"> <OOBE> <ProtectYourPC>2</ProtectYourPC> <SkipMachineOOBE>true</SkipMachineOOBE> <SkipUserOOBE>true</SkipUserOOBE> </OOBE> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Description>Default Administrator Account</Description> <DisplayName>Administrator</DisplayName> <Group>Administrators</Group> <Name>Administrator</Name> </LocalAccount> </LocalAccounts> </UserAccounts> </component> </settings> <settings pass="windowsPE"> <component name="Microsoft-Windows-Setup" 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"> <EnableFirewall>false</EnableFirewall> <EnableNetwork>false</EnableNetwork> <Restart>Restart</Restart> <UserData> <AcceptEula>true</AcceptEula> <ProductKey> <Key></Key> </ProductKey> </UserData> </component> <component name="Microsoft-Windows-International-Core-WinPE" 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"> <SetupUILanguage> <UILanguage>zh-CN</UILanguage> </SetupUILanguage> <InputLocale>en-US;zh-CN</InputLocale> <LayeredDriver>1</LayeredDriver> <SystemLocale>zh-CN</SystemLocale> <UILanguage>zh-CN</UILanguage> <UserLocale>zh-CN</UserLocale> <UILanguageFallback>en-US</UILanguageFallback> </component> </settings> <cpi:offlineImage cpi:source="wim:e:/osdiy/install.wim#wps" xmlns:cpi="urn:schemas-microsoft-com:cpi" /></unattend>

有了unattend.xml自动应答文件,在WinNTSetup中,勾选左下角的“Unattended”,通过右边的下拉列表选择我们的自动应答文件。

最后点击右下角的“开始安装”。完成后,重新启动计算机。然后,就等着进入桌面了。

温馨提示:内容均由网友自行发布提供,仅用于学习交流,如有版权问题,请联系我们。