我在一台联想笔记本电脑上有一张Windows 7图像,我已经准备好了在审核模式下进行成像。
在运行实际的sysprep时,显示会关闭,所以我看不清发生了什么。我能听到偶尔的嘟嘟声,但大约一个小时后,它似乎停止了。
如何运行sysprep并将显示保持为活动状态,这样我就可以看到什么失败了?
(我可以在系统运行前将笔记本电脑退回状态)
发布于 2014-05-02 23:59:44
Windows 默认情况下,当sysprepping时移除所有驱动程序.。在这种情况下,它在删除视频驱动程序后出现了一个致命错误。
这个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>https://serverfault.com/questions/592827
复制相似问题