Changes between Version 4 and Version 5 of libwdi/zadig


Ignore:
Timestamp:
06/18/10 17:30:02 (3 years ago)
Author:
pbatard
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • libwdi/zadig

    v4 v5  
    1 == Zadig - User Guide == 
    2  
    31[http://libusb.org/wiki/libwdi_faq (Previous)] [http://libusb.org/wiki/libwdi_install (Next)] [http://libusb.org/wiki/libwdi#Documentation (Back to Table of Content)] 
    42 
    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) 
     17advanced_mode = true; 
     18 
     19// Extract driver files only, don't install (default = false) 
     20extract_only = false; 
     21 
     22// List only devices that don't have a driver (default = true) 
     23list_all = true; 
     24 
     25// Trim trialing whitespaces from the USB device description (default = false) 
     26trim_whitespaces = true; 
     27 
     28// Select the following as the default driver to install: 
     29// WinUSB = 0, libusb0.sys = 1, Custom = 2 (default = WinUSB) 
     30default_driver = 0; 
     31 
     32// Set the default destination directory for extraction of the driver files (default = "C:\usb_driver") 
     33default_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 
     40device = { 
     41  Description = "Sample Device";  
     42  VID = 0xABCD; 
     43  PID = 0x1234; 
     44  MI = 0x00; 
     45}; 
     46}}}