What is cvtres.exe?

Aaron Jensen picture Aaron Jensen · Sep 4, 2015 · Viewed 13.9k times · Source

When I'm using aspnet_compiler.exe to pre-compile my website, I see a cvtres.exe process along with csc.exe. I'm assuming this is part of the .NET compilation process, and would also show when compiling my .NET assemblies. What is cvtres.exe and what does it do?

Answer

DrewJordan picture DrewJordan · Sep 4, 2015

Windows Resource to Object Converter (CvtRes.exe) (from here)

As to what it does, well... I guess that it converts Resources to Objects.

Edit: As Scott says,

to be more specific, it is part of the C++ toolchain to turn resource files (.res) in to compiled objects that can be linked using the linker.

I was looking for something official that explains it, but the best I could find is an old support article that mentions it. Hope it helps!