How do I tell if an executable is a .NET application?
I prefer not to have to install Visual Studio. But if I have to I will. A commandline program is preferred.
Drop it into Reflector and it will be de-compiled.
"I prefer not to have to install Visual Studio. But if I have to I will. A commandline program is preferred."
You don't have to install Visual Studio just to run a .NET application - just the .NET framework which you can download on it's own.
But, if you want to determine whether it's a .NET application, you can download and use .NET Reflector or use ILDasm, which comes with the .NET framework SDK.
Process Explorer colors dotNet applications using yelow color by default. That should be enough :)
Or simpler : use the Process Explorer. Free download here
Simpler yet:
Open the properties, look at the tab "Version", if under "Other information" you see a property called "Assembly version" then it is likely a .NET application.
Open the EXE or DLL with notepad or similar app and look for the text "mscorlib" (without the quotes). If you find it, it will most likely be a .NET application.
PEVerify
will do that :)