DELL最新出的T130、T330、R230、R330四款服务器新增了USB3.0功能,在安装2008 R2系统镜像需要集成USB3.0才能安装,不然鼠标和键盘动不了

  1. 先在D盘创建一个文件夹Temp,在Temp下创建四个子文件夹分别为boot、install、drivers、wim

  2.  用UltraISO(软碟通)打开windows server 2008 R2 ISO镜像,在sources文件下找到boot.wim和install.wim分别提取上刚才上面创建的boot和install文件夹中,提取在上方操作下可找到

  3.  在刚才创建的文件夹中看是否提取成功,然后在电脑运行中输入CMD打开管命令提示符,一定要看到有管理员才能操作,运行以下命令dism /get-wiminfo  /wimfile:d:\Temp\install\install.wim查看映射序号,我们用到Enterprise ,所以这里序号是3

  4.  把install.wim中的序号3解压到wim文件中,运行命令:dism /mount-wim /wimfile:d:\Temp\install\install.wim /index:3 /mountdir:d:\Temp\wim 回车开始安装映像

  5.  安装完后可以在D盘Temp下的wim中看到有文件

  6.  开始集成驱动,在百度上下载一个USB3.0驱动解压到D盘Temp下的drivers文件夹中,或者在DELL官网也有USB3.0驱动

  7.  在命令提示符运行以下命令:dism /image:d:\Temp\wim /add-driver /driver:d:\Temp\drivers /recurse /forceunsigned  成功集成

  8.  然后重新整合映像,就是把它打包起来 运行以下命令:dism /unmount-wim /mountdir:d:\Temp\wim /commit 

  9.  最后再对boot.wim文件重复上面步骤即可。    注意10-13  是做boot.wim文件

10.

dism /get-wiminfo /wimfile:d:\Temp\boot\boot.wim

11.dism /mount-wim /wimfile:d:\Temp\boot\boot.wim /index:1 /mountdir:d:\Temp\wim

或者dism /mount-wim /wimfile:d:\Temp\boot\boot.wim /index:2 /mountdir:d:\Temp\wim (1 and 2 install all)

12、dism /image:d:\Temp\wim /add-driver /driver:d:\Temp\drivers /recurse /forceunsigned
13、dism /unmount-wim /mountdir:d:\Temp\wim /commit

14.最后再把boot和install中的wim文件拖到UltraISO中的sources中替换,最后在上面刻录到光盘或U盘就可以了,如果要保存这个镜像的话要把UltraISO激活才能保存

windows server 2008 R2 怎么集成USB3.0驱动的更多相关文章

  1. Windows Server 2008 R2 IIS7.5 部署 MVC HTTP 404.0 Not Found 错误

    如图 在Windows Server 2008 R2 IIS7.5 部署 MVC HTTP 404.0 Not Found 错误,在Win7环境下测试正常,在百度中查找相关解决方法,如修改配置文件等, ...

  2. 在Windows Server 2008 R2(x64)上安装.NET Framework 4.5 兼谈.NET Framework 4.0 “在服务器核心角色上不受支持”含义

    完成了一个服务器文件监控系统,该系统的核心是一个Windows服务,需要安装在服务器上.由于是Visual Studio 2012开发,为了保证开发的Windows服务可以运行,必须在Windows服 ...

  3. IIS7.0 Windows Server 2008 R2 下配置证书服务器和HTTPS方式访问网站

    配置环境 Windows版本:Windows Server 2008 R2 Enterprise Service Pack 1 系统类型: 64 位操作系统 了解HTTPS 为什么需要 HTTPS ? ...

  4. windows server 2008 R2域中的DC部署 分类: AD域 Windows服务 2015-06-06 21:09 68人阅读 评论(0) 收藏

    整个晚上脑子都有点呆滞,想起申请注册好的博客还从来都不曾打理,上来添添生机.从哪里讲起呢,去年有那么一段时间整个人就陷在域里拔不出来,于是整理了一些文档,害怕自己糊里糊涂的脑子将这些东西会在一觉醒来全 ...

  5. Windows server 2008 R2搭建主域控制器 + 辅域控制器

    一:实验模拟环境: Zhuyu公司是一个小公司,随着公司状大,公司越来越重视信息化建设,公司考虑到计算机用户权限集中管理及共享资源同步管理, 需要架设一套AD域控服务器,考虑到成本和日后管理问题,计划 ...

  6. [教程] Windows Server 2008 R2架设SMTP服务器发送邮件教程

    Windows Server 2008 R2 架设SMTP服务器实现邮件发送 目的:架设SMTP服务器实现邮件发送. 一.域名设置 添加“邮件交换记录(MX)”: Newjs.cn           ...

  7. 在Windows Server 2008 R2上安装IIS服务

    一.Windows Server 2008 R2 介绍 1.Windows Server 2008 R2 基本概念 2.Windows Server 2008 R2 家族系列 二.VMware虚拟机安 ...

  8. 在系统启动时,Windows Vista 中、 在 Windows 7 中,Windows Server 2008 中和在 Windows Server 2008 R2 中的 497 天后未关闭 TIME_WAIT 状态的所有 TCP/IP 端口

    在系统启动时,Windows Vista 中. 在 Windows 7 中,Windows Server 2008 中和在 Windows Server 2008 R2 中的 497 天后未关闭 TI ...

  9. Windows Server 2008 R2中IIS7.5配置完网站权限不足问题的解决办法:

    Windows Server 2008 R2中IIS7.5配置完网站权限不足问题的解决办法:常见问题:HTTP 错误 500.0 - Internal Server Error无法显示页面,因为发生内 ...

随机推荐

  1. oracle rowtype

    v_customer customerinfo%rowtype; select * into v_customer from customerinfo where guid = v_loan.cust ...

  2. python学习用到的网站

    官方地址:https://www.python.org/ 玩蛇网:http://www.iplaypython.com/

  3. Ubuntu中安装MySQL

    基本步骤: 1. sudo apt-get install mysql-server 2. apt-get install mysql-client 3.  sudo apt-get install ...

  4. vue 运行脚手架报错

    报错: You are using the runtime-only build of Vue where the template compiler is not available. Either ...

  5. Qbxt 模拟赛&&day-8

    /* 今天的题目还是比较不错的. 今天考的很烂还是依旧的弱. 快考试了加油吧. Bless all. */ 注:所有题目的时间限制均为 1s,内存限制均为 256MB. 1.第K小数 (number. ...

  6. bootstrap列表组的使用

    <ul class="list-group"> <li class="list-group-item"> <div class=& ...

  7. B. Tell Your World(几何数学 + 思维)

    B. Tell Your World time limit per test 1 second memory limit per test 256 megabytes input standard i ...

  8. Scrapy 设置随机 User-Agent

    方式一:在每个 Spider中设置(针对单个Spider) class TencentSpider(scrapy.Spider): name = 'tencent' allowed_domains = ...

  9. Flutter文本框TextField

    参数详解TextField同时也使用Text 的部分属性: 属性 作用controller 控制器,如同 Android View iddecoration 输入器装饰keyboardType 输入的 ...

  10. (转)linux中wget未找到命令

    转:https://blog.csdn.net/djj_alice/article/details/80407769 在装数据库的时候发现无法使用wget命令,提示未找到命令,如图所示 那是因为没有安 ...