windows-driver.rst
changeset 2594 dfbf7d22cbb8
parent 2490 cf18fc475250
child 2595 59a720e9b069
equal deleted inserted replaced
2593:f0ab046a080f 2594:dfbf7d22cbb8
    36 List drivers
    36 List drivers
    37 ============
    37 ============
    38 
    38 
    39 List of all installed drivers::
    39 List of all installed drivers::
    40 
    40 
    41   cmd> driverquery
    41   driverquery
    42   cmd> driverquery /v
    42   driverquery /v
       
    43   Dism /online /Get-Drivers
       
    44   Dism /online /Get-DriverInfo /driver:C:\test\drivers\usb\usb.inf
    43 
    45 
    44 Show hardware information::
    46 Show hardware information::
    45 
    47 
    46   cmd> msinfo32
    48   cmd> msinfo32
    47 
    49 
    48 http://support.microsoft.com/kb/308549
    50 http://support.microsoft.com/kb/308549
    49   Windows XP/2003 System Information Tool.
    51   Windows XP/2003 System Information Tool.
       
    52 
       
    53 Install driver
       
    54 ==============
       
    55 
       
    56 Install::
       
    57 
       
    58   Dism /online /Add-Driver /driver:C:\test\drivers\mydriver.inf /ForceUnsigned
       
    59 
       
    60 Remove::
       
    61 
       
    62   Dism /image:C:\test\offline /Remove-Driver /driver:oem1.inf
       
    63 
       
    64 https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/add-and-remove-drivers-to-an-offline-windows-image
       
    65   Add driver packages to an offline Windows image.
    50 
    66 
    51 Sysinternals.
    67 Sysinternals.
    52 =============
    68 =============
    53 
    69 
    54 WinObj.
    70 WinObj.