美文网首页
如何添加一个驱动到 DriverStore

如何添加一个驱动到 DriverStore

作者: wyrover | 来源:发表于2016-06-24 18:08 被阅读381次

    所有的驱动存储在 DriverStore,目录在
    %SYSTEMDRIVE%\Windows\System32\DriverStore
    可以用命令行 pnputil 添加删除驱动。

    clip_image002clip_image002

    添加一个驱动:

    Pnputil.exe -a c:\LOCATION_OF_DRIVER\DRIVER_NAME.inf
    

    从目录下添加所有驱动

    Pnputil.exe -a C:\LOCATION_OF_DRIVER\*.inf
    

    删除驱动

    Pnputil.exe -d DRIVER_NAME_inf
    

    http://msdn.microsoft.com/en-us/library/windows/hardware/ff550428(v=vs.85).aspx.

    相关文章

      网友评论

          本文标题:如何添加一个驱动到 DriverStore

          本文链接:https://www.haomeiwen.com/subject/mrnodttx.html