Sysprep Windows 7 笔记本电脑显示屏已打开

Sysprep Windows 7 笔记本电脑显示屏已打开

我在联想笔记本电脑上有一个 Windows 7 映像,我已准备好从审核模式进行映像处理。

在运行实际的 sysprep 时,显示屏会关闭,所以我看不到发生了什么。我可以听到偶尔的哔哔声,但大约一个小时后它似乎就停止了。

我如何运行 sysprep 并保持显示处于活动状态,以便能够看到失败的原因?

(我可以将笔记本电脑恢复到系统准备之前的状态)

答案1

视窗系统准备时默认删除所有驱动程序。在这种情况下,它吐出了一个致命错误删除视频驱动程序。

这就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">
      <PersistAllDeviceInstalls>true</PersistAllDeviceInstalls>
    </component>
    <component name="Microsoft-Windows-PnpSysprep" 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">
      <PersistAllDeviceInstalls>true</PersistAllDeviceInstalls>
    </component>
  </settings>
</unattend>

相关内容