DLL redirection using manifests

后端 未结 3 555
予麋鹿
予麋鹿 2020-11-28 09:04

I need to reliably redirect an applications look up of a specific DLL. Using the app.exe.local approach does not work because local files are ignored if the application has

3条回答
  •  清酒与你
    2020-11-28 09:21

    You may be able to work around this by using Detours, wrapping LoadLibrary. Your LoadLibrary wrapper would be able to recognize attempts to load your DLL and rewrite the path appropriately.

提交回复
热议问题