Good day programmers!
There is necessity to track illegal USB devices in some network. So I started to write client-server. What I want to have on client:
1) Get a list of USB devices;
2) Get device type(is storage);
3) Get device info (device ID, vendor ID);
4) (maybe) Disable file transfer possibility;
I attached libusb static library and header to my project. Then I got device list but there no useful information. To get device info I need connect to it first(if I right thinking), but i got error at libusb_open(). I suppose the reason in libusb driver is absent. It can be found at libusb homesite but I must configure it first for specific device before use. This is a problem becouse in my case there will be alot of devices and some of them appear in future. Can someone advise a solution?