| 5 | | (Coming Soon...) |
| | 3 | = Zadig - User Guide = |
| | 4 | |
| | 5 | (Coming soon) |
| | 6 | |
| | 7 | == Basic usage == |
| | 8 | |
| | 9 | == Example of a zadig.ini file == |
| | 10 | |
| | 11 | {{{#!c |
| | 12 | /* |
| | 13 | * Sample ini file for Zadig |
| | 14 | */ |
| | 15 | |
| | 16 | // Start application in advanced mode (default = false) |
| | 17 | advanced_mode = true; |
| | 18 | |
| | 19 | // Extract driver files only, don't install (default = false) |
| | 20 | extract_only = false; |
| | 21 | |
| | 22 | // List only devices that don't have a driver (default = true) |
| | 23 | list_all = true; |
| | 24 | |
| | 25 | // Trim trialing whitespaces from the USB device description (default = false) |
| | 26 | trim_whitespaces = true; |
| | 27 | |
| | 28 | // Select the following as the default driver to install: |
| | 29 | // WinUSB = 0, libusb0.sys = 1, Custom = 2 (default = WinUSB) |
| | 30 | default_driver = 0; |
| | 31 | |
| | 32 | // Set the default destination directory for extraction of the driver files (default = "C:\usb_driver") |
| | 33 | default_dir = "C:\test"; |
| | 34 | }}} |
| | 35 | |
| | 36 | == Example of a zadig preset device config file == |
| | 37 | {{{#!c |
| | 38 | // This is a sample preset device configuration for Zadig |
| | 39 | |
| | 40 | device = { |
| | 41 | Description = "Sample Device"; |
| | 42 | VID = 0xABCD; |
| | 43 | PID = 0x1234; |
| | 44 | MI = 0x00; |
| | 45 | }; |
| | 46 | }}} |