I know there is a registry key indcating the install directory, but don't remember what it is off-hand.
Currently interested in VS2008 install directory, though it wouldn't hurt to list others for future reference.
|
I know there is a registry key indcating the install directory, but don't remember what it is off-hand. Currently interested in VS2008 install directory, though it wouldn't hurt to list others for future reference.
| |||
|
feedback
|
|
I'm sure there's a registry entry as well but I couldn't easily locate it. There is the VS90COMNTOOLS environment variable that you could use as well. | |||
feedback
|
|
I use this method the find the installation path:
| |||
|
feedback
|
|
Environment: Thanks to Zeb and Sam for the
Registry: Looks like the registry location is
[Adapted from here] | ||||
|
feedback
|
|
Ah, the 64-bit machine part was the issue. Turns out I need to make sure I'm running the PowerShell.exe under the syswow64 directory in order to get the x86 registry keys. Now that wasn't very fun. | |||
feedback
|
Registry MethodI recommend querying the registry for this information. This gives the actual installation directory without the need for combining paths, and it works for express editions as well. This could be an important distinction depending on what you need to do (e.g. templates get installed to different directories depending on the edition of Visual Studio). The registry locations are as follows (note that Visual Studio is a 32-bit program and will be installed to the 32-bit section of the registry on x64 machines):
where Major is the major version number, Minor is the minor version number, and the text after the colon is the name of the registry value. For example, the installation directory of Visual Studio 2008 Professional would be located at the HKLM\SOFTWARE\Microsoft\Visual Studio\9.0 key, in the InstallDir value. Here's a code example that prints the installation directory of several versions of Visual Studio and Visual C# Express:
Environment Variable MethodThe non-express editions of Visual Studio also write an environment variable that you could check, but it gives the location of the common tools directory, not the installation directory, so you'll have to do some path combining. The format of the environment variable is VS*COMNTOOLS where * is the major and minor version number. For example, the environment variable for Visual Studio 2010 is VS100COMNTOOLS and contains a value like C:\Program Files\Microsoft Visual Studio 10.0\Common7\Tools. Here's some example code to print the environment variable for several versions of Visual Studio:
| |||
|
feedback
|
|
Aren't there environment settings? I have | |||
|
feedback
|
|
Strange, but there doesn't seem to be any values under that key in my registry. I'm running Vista Ultimate 64-bit with VS 2008 SP1. | |||
|
feedback
|
|
Use | |||
|
feedback
|