Free Dll Decompiler

  1. Free Dll Decompiler Tool
  2. Best Free Dll Decompiler
  3. Free Exe Decompiler
  4. Microsoft Dll Fix Free Download
  5. Decompile Dotnet Dll
  6. Free .net Dll Decompiler
Active1 month ago

Can we decompile a.exe or.dll file as 100%? Also sometimes seems some mistakes on somewhere (like mainfrm.cs), how can we fix that? What is the best.NET decompiler? Or What would you prefer? I have an old DLL that stopped working (log2vis.dll) and I want to look inside it to see what objects it uses. The DLL was written in C (not.NET). Is there a tool that will decompile/disassemble.

I have an old DLL that stopped working (log2vis.dll) and I want to look inside it to see what objects it uses.
The DLL was written in C++ (not .NET). Is there a tool that will decompile/disassemble C++ files?

Tamara Wijsman

Free Dll Decompiler Tool

10.3k7 gold badges47 silver badges78 bronze badges
Lea CohenLea Cohen
4,28117 gold badges68 silver badges97 bronze badges

closed as off-topic by Rob, Bhargav RaoAug 17 at 0:45

This question appears to be off-topic. The users who voted to close gave this specific reason:

  • 'Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.' – Rob, Bhargav Rao
If this question can be reworded to fit the rules in the help center, please edit the question.

Best Free Dll Decompiler

6 Answers

This might be impossible or at least very hard. The DLL's contents don't depend (a lot) on it being written in C++; it's all machine code. That code might have been optimized so a lot of information that was present in the original source code is simply gone.

That said, here is one article that goes through a lot of material about doing this.

unwind

Free Exe Decompiler

unwind
333k54 gold badges410 silver badges545 bronze badges
MalkocogluMalkocoglu
1,8811 gold badge23 silver badges27 bronze badges

I think a C++ DLL is a machine code file. Therefore decompiling will only result in assembler code. If you can read that and create C++ from that you're good to go.

Igor Popov
6,2005 gold badges43 silver badges60 bronze badges
RvdKRvdK

Microsoft Dll Fix Free Download

17.1k2 gold badges47 silver badges92 bronze badges

There are no decompilers which I know about.W32dasm is good Win32 disassembler.

Peter Mortensen
14.5k19 gold badges89 silver badges118 bronze badges
SzczepanSzczepan

There really isn't any way of doing this as most of the useful information is discarded in the compilation process. However, you may want to take a look at this site to see if you can find some way of extracting something from the DLL.

anon

Decompile Dotnet Dll

The closest you will ever get to doing such thing is a dissasembler, or debug info (Log2Vis.pdb).

Free
Naim ArnoldNaim Arnold

Free .net Dll Decompiler

Not the answer you're looking for? Browse other questions tagged c++dlldecompiling or ask your own question.