Windows Vista: Unable to load DLL 'x.dll': Invalid access to memory location. (DllNotFoundException)

前端 未结 6 1324
伪装坚强ぢ
伪装坚强ぢ 2020-12-19 16:19

I was testing on a customer\'s box this afternoon which has Windows Vista (He had home, but I am testing on a Business Edition with same results).

We make use of a .

6条回答
  •  不知归路
    2020-12-19 16:20

    Unable to load DLL 'HardwareID.dll': Invalid access to memory location. (Exception from HRESULT: 0x800703E6)

    The name of DllNotFoundException is confusing you - this isn't a problem with finding or loading the DLL file, the problem is that when the DLL is loaded, it does an illegal memory access which causes the loading process to fail.

    Like another poster here, I think this is a DEP problem, and that your UAC, etc, changes have finally allowed you to disable DEP for this application.

提交回复
热议问题