Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is CorFlags.exe? (.NET Framework Tools)

Tags:

Where can I find the CorFlags.exe tool? I made full search of my hard disk drive, but it was not found.

I have: .NET Framework 4.0, Visual C# 2010 Express, Visual C++ 2010 Express. The OS is Windows 7 Ultimate 32 bit.

like image 883
Edward83 Avatar asked Dec 15 '10 13:12

Edward83


People also ask

Where to find CorFlags exe?

The prompt should look like this (file location and executable): “C:\Program Files (86)\Microsoft SDKs\Windows\v10. 0A\bin\netfx 4.7. 2 tools\Corflags.exe”.

What is Corflags?

Corflags is the inbuilt tool of Visual Studio which can be used to find out the type of .dll i.e 32 bit, 64 bit or any CPU in .Net application . This tool is available in Visual studio 2005 onward.


1 Answers

It should be part of the Windows SDK, version 6 or higher, located somewhere like...

%ProgramFiles%\Microsoft SDKs\Windows\v6.0A\Bin\CorFlags.exe %ProgramFiles%\Microsoft SDKs\Windows\v6.0A\Bin\x64\CorFlags.exe %ProgramFiles%\Microsoft SDKs\Windows\v7.0A\Bin\CorFlags.exe %ProgramFiles%\Microsoft SDKs\Windows\v7.0A\Bin\x64\CorFlags.exe %ProgramFiles%\Microsoft SDKs\Windows\v7.1\Bin\CorFlags.exe %ProgramFiles%\Microsoft SDKs\Windows\v7.1\Bin\x64\CorFlags.exe %ProgramFiles%\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.5.1 Tools\CorFlags.exe %ProgramFiles%\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.5.1 Tools\x64\CorFlags.exe %ProgramFiles%\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6 Tools\CorFlags.exe %ProgramFiles%\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6 Tools\x64\CorFlags.exe %ProgramFiles%\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6.1 Tools\CorFlags.exe %ProgramFiles%\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6.1 Tools\x64\CorFlags.exe 

If you don't see it and you have a 64-bit system, also check %ProgramFiles(x86)%.

like image 72
user541686 Avatar answered Sep 18 '22 15:09

user541686