T
T
TroyHarder2020-07-09 23:16:34
Programming
TroyHarder, 2020-07-09 23:16:34

Disabling dll file request in exe file?

One exe-shnik requests a specific dll file, without which it does not want to start. How to run the program without this dll file? Is it possible to somehow cut his request or is there another way?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
V
Vapaamies, 2020-07-10
@vapaamies

Depends on who issues the error message.

  • If Windows itself, the library is statically linked, nothing can be done.
  • If the program itself, it loads the DLL through LoadLibrary and theoretically can work without it. Search with a disassembler and patch.

P
pfg21, 2020-07-09
@pfg21

No way, the necessary functions are requested from the dll, and without them there is usually no way.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question