Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VS2010 Express missing devenv.exe so I can't fix "project out of date" issue

I'm actually trying to fix this issue where my projects are always out of date by using the steps outlined in this answer to enable system logging.

However I can't find devenv.exe.config or the matching .exe file anywhere on my machine let alone in either C:\Program Files or C:\Program Files (x86).

I'm running Windows 7 SP1 (which I presume isn't particularly relevant) and VS2010 Express SP1. I was thinking that maybe devenv isn't available in the Express version but I can't find any info to either confirm or deny my theory.

Can anyone suggest why I don't have devenv.exe and whether I should or not?

If not, how do I fix the "always out of date" issue without being able to get a proper log that tells me what's causing the problem?

like image 810
Malorion Avatar asked Mar 19 '12 22:03

Malorion


People also ask

How do I set up Devenv exe?

Press windows + r to open run window and then write "regedit" to open your PC registry. Then go to HKEY_LOCAL_MACHINE -> SOFTWARE -> Microsoft -> Windows -> Currentversion -> App Paths -> devenv.exe. Click on devenv.exe and change the value of default .

Where is Devenv exe config?

Find devenv.exe. config (the devenv.exe configuration file) in: %ProgramFiles%\Microsoft Visual Studio\2022\Enterprise\Common7\IDE or %ProgramFiles(x86)%\Microsoft Visual Studio\2022\Enterprise\Common7\IDE.

What does Devenv exe mean?

What is devenv.exe? The genuine devenv.exe file is a software component of Visual Studio by Microsoft Corporation. "Devenv.exe" is the central Integrated Development Environment (IDE) for Microsoft's Visual Studio suite used worldwide to develop applications for multiple platforms in over twenty programming languages.


1 Answers

The name of the executable (and, of course, the associated configuration file) is dependent upon which type of Visual Studio you're running. Normally, this is devenv.exe. In the case of Visual Studio Express, you should be able to locate vcexpress.exe.

A similar configuration file is available as vcexpress.exe.config, and you should be able to place your system.diagnostics configuration in that file.

like image 139
Edward Thomson Avatar answered Oct 07 '22 13:10

Edward Thomson