Export the ODBC Driver of ODBC Data Source Administrator

0

I am trying to export the following IBM INFORMIX ODBC DRIVER of the ODBC Data Source Administrator as viewed below:

enter image description here

I understand that the ODBC driver is installed in the registry and Program Files (x86). I tried exporting the details of third-party drivers from Windows using the following command:

Export-WindowsDriver -Online -Destination C:\temp\drivers

However the IBM INFORMIX ODBC DRIVER did not export. I am wondering if there is a way to export this driver?

Jonathan Davies

Posted 2017-10-26T15:25:13.333

Reputation: 111

If you scroll along in the window you will see the driver filename. That should be sufficient to find the DLL. – mt025 – 2017-10-26T20:59:47.110

In what sense are you trying to "export" the driver? To what? You can find information about how Windows tracks the drivers here: https://docs.microsoft.com/en-us/sql/odbc/reference/install/registry-entries-for-odbc-components . They're just registry entries pointing to DLLs anywhere on the system. They're not system drivers.

– Corrodias – 2017-10-28T04:27:19.977

@Corrodias I understand that. But if I remove the driver and put the DLL in System32 for example, it does not pick it up as a Driver in ODBC. Therefore I cannot point my Data Source's in User DSN and System DSN to the IBM ODBC Driver. – Jonathan Davies – 2017-10-28T10:00:09.827

You would need to set up the registry entries that define it as an ODBC driver. The ideal way to install an ODBC driver is using its own installer, because it can have prerequisites. If you want to do it manually, you have to learn how to set up its definition in the registry. – Corrodias – 2017-10-30T19:37:08.143

No answers