How can i deassemble .exe files written in visual studio >?

MauveCloud

Distinguished
May 7, 2010
52
0
18,610
If you're planning to do that with proprietary software, that's often a violation of the license terms (which usually have a line about not disassembling, reverse engineering etc.), and it might be against the forum rules to help you with that.

However, if you want to see the assembly code for programs you write yourself in a high-level language, this page has some ways to do that for C or C++:
http://stackoverflow.com/questions/1020498/how-to-view-the-assembly-behind-the-code-using-visual-c
If you're coding in some other high-level language in Visual Studio, you could probably search the web for instructions on how to make it output assembly code.