is it possible to run visual studio command promt without installing visual studio?
i want to install regasm.exe from the vs command prompt as our server is 64bit.
And my requirement register using 32bit mode.
is it possible to run visual studio command promt without installing visual studio? i
Share
regasm.exeis part of the .NET Framework installation, and thus not necessarily a part of Visual Studio.Browse around in the directory
C:\WINDOWS\Microsoft.NETon your server. On an x64 machine, you will see the directoryC:\WINDOWS\Microsoft.NET\Frameworkwhere the 32-bit versions are kept, andC:\WINDOWS\Microsoft.NET\Framework64for the 64-bit versions, natch.You should see sub-folders inside those directories for the different .NET versions like
v2.0.50727,v3.0andv3.5.regasm.execan be found inside those folders. (Since .NET v3.0 and v3.5 build upon v2x.x, it’s not in there, but can be found in v1.0x, v1.1x, and v2.0x.)Thus, the latest 32-bit version of regasm can be found at
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\regasm.exe, which you can run from any command prompt.