zoukankan      html  css  js  c++  java
  • 如何从操作系统安装文件提取驱动文件/ How to extract driver files from setup files (win 7) love

    在部署 OS 过程中遇到一个问题,需要找到操作系统对于的驱动文件。由于OS都是直接从微软服务器上面copy下来的,所以,要找到对应的 Device Drivers很困难。好不容易找到一个Drivers的文件夹,发现各种驱动啊,估计也只有当时创建的人知道。。(吐槽一下)

    怎么样才能找到当前系统的驱动文件呢??网上转了好大一圈发下下面的方法很靠谱,于是就有了这篇帖子:

    1. Download 7Zip file from http://www.7zip.org

    2. open OS file and open ..\sources\install.wim\Windows\System32

    3. you can see two folders: Drivers and DriveStore

        

    4. Now, extract them both two folders to your path, open Driverstore folder and delete Temp folder you don't need it.

        

    5. Rename all files in folder "en-US" which end with .inf_loc to .inf, you can also create a cmd file as

    ren *.inf_loc *.inf

    6. Go through Device Manager to installation the driver.

  • 相关阅读:
    windows7 下 oracle 10g服务端如何安装?
    DOM模块支持测试
    获取css属性
    在webstorm启动nginx服务器
    获取link链接
    innerText
    外部动态加载javascript
    外部动态加载css
    冒泡排序
    Nodelist
  • 原文地址:https://www.cnblogs.com/windbg/p/2803071.html
Copyright © 2011-2022 走看看