首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >装有显示器的7笔记本电脑

装有显示器的7笔记本电脑
EN

Server Fault用户
提问于 2014-05-02 22:07:15
回答 1查看 130关注 0票数 1

我在一台联想笔记本电脑上有一张Windows 7图像,我已经准备好了在审核模式下进行成像。

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

如何运行sysprep并将显示保持为活动状态,这样我就可以看到什么失败了?

(我可以在系统运行前将笔记本电脑退回状态)

EN

回答 1

Server Fault用户

发布于 2014-05-02 23:59:44

Windows 默认情况下,当sysprepping时移除所有驱动程序.。在这种情况下,它在删除视频驱动程序后出现了一个致命错误。

这个unattend.xml暴露了这个问题:

代码语言:javascript
复制
<?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>
票数 0
EN
页面原文内容由Server Fault提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://serverfault.com/questions/592827

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档