联想笔记本电脑上有一个Windows 7映像,我已经为审核模式下的映像准备好了。
在运行实际的sysprep时,显示器closures,所以我看不到发生了什么事情。 我可以听到偶尔的哔哔声,但是大概一个小时之后似乎就停顿了。
如何运行sysprep并使显示器保持活动状态,以便我可以看到什么失败?
(我可以返回笔记本电脑到我sysprepped之前的状态)
系统默认情况下, Windows 将删除所有驱动程序 。 在这种情况下,它是删除video驱动程序后吐出一个致命的错误。
这个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>