We have .NET application which uses C++ library via [DllImport]. It works fine on many computers (thousands of customers) excepting 3 computers. All of them have Windows 10 installed (other Windows 10 platforms work fine).
The exception is:
System.DllNotFoundException: Unable to load DLL 'Helper.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
This dll places in the same folder as main executable file. What already done to fix:
put DLL in system32 folder;
installed different version of vc redist;
- run as administrator.
The result is the same.
Any ideas, guys?
Thanks in advance!