How to run regasm.exe from command line other than Visual Studio command prompt?
Asked Answered
T

10

60

I want to run regasm.exe from cmd. which is available in c:\windows\Microsoft.net\framework\2.057

I do like this c:\ regasm.exe

It gives regasm is not recognized as internal or external command.

So I understood that I need to set the path for regasm.exe in environment variable.

For which variable do I need to set the path to run regasm as described above?

Takashi answered 10/6, 2009 at 6:11 Comment(0)
B
48

In command prompt:

SET PATH = "%PATH%;%SystemRoot%\Microsoft.NET\Framework\v2.0.50727"
Base answered 10/6, 2009 at 6:21 Comment(4)
Better still: SET PATH "%PATH%;%SystemRoot%\Microsoft.NET\Framework\v2.0.50727"Sibbie
@CharlieSomerville Could you just fix the original? It's too small for someone else to edit.Urano
I could not get this to work without adding an equals. I tried to edit it but SO said the edit was too short. SET PATH = "%PATH%;%SystemRoot%\Microsoft.NET\Framework\v2.0.50727Roscoeroscommon
But, what if there is no "Framework" folder in the Microsoft.NET folder ? I ended up on this SO question because there is no visual studio in my production environment (which is gonna be the case for most production environements), and I don't have this framwork folder, even though IIS can run my .NET websites.Orson
S
41

Like Cheeso said:

You don't need the directory on your path. You could put it on your path, but you don't NEED to do that. If you are calling regasm rarely, or calling it from a batch file, you may find it is simpler to just invoke regasm via the fully-qualified pathname on the exe, eg:

%SystemRoot%\Microsoft.NET\Framework\v2.0.50727\regasm.exe MyAssembly.dll

Sibbie answered 4/9, 2009 at 8:24 Comment(2)
Is the little change to Cheeso's answer worth a separate one?Hereafter
@xehpuk, for karma, probably, it is. :)Anglocatholic
C
23

You don't need the directory on your path. You could put it on your path, but you don't NEED to do that.
If you are calling regasm rarely, or calling it from a batch file, you may find it is simpler to just invoke regasm via the fully-qualified pathname on the exe, eg:

c:\Windows\Microsoft.NET\Framework\v2.0.50727\regasm.exe   MyAssembly.dll
Canonicity answered 10/6, 2009 at 10:45 Comment(1)
The problem with that is you OS may be in winnt or some other folder instead of Windows, so it's better to use %systemroot% as the other responses showStarryeyed
E
21

If you created the DLL using .net 4.5 , then copy and paste this command on command prompt.

 %SystemRoot%\Microsoft.NET\Framework\v4.0.30319\regasm.exe MyAssembly.dll
Extravaganza answered 31/7, 2014 at 5:36 Comment(0)
S
8

I use this as post-build event in Visual Studio:

call "%VS90COMNTOOLS%vsvars32.bat"
regasm  $(TargetPath) /tlb

Depending on your Visual Studio version, use these environment variables instead:

  1. Visual Studio 2008: VS90COMNTOOLS
  2. Visual Studio 2010: VS100COMNTOOLS
  3. Visual Studio 2012: VS110COMNTOOLS
  4. Visual Studio 2013: VS120COMNTOOLS
  5. Visual Studio 2015: VS140COMNTOOLS
  6. Visual Studio 2017: VS150COMNTOOLS
Sallysallyann answered 5/3, 2010 at 9:49 Comment(0)
D
2

I use the following in a batch file:

path = %path%;C:\Windows\Microsoft.NET\Framework\v2.0.50727
regasm httpHelper\bin\Debug\httpHelper.dll /tlb:.\httpHelper.tlb /codebase
pause
Deemster answered 10/6, 2009 at 10:30 Comment(0)
M
2

I really dislike the hard coding of paths to get to regasm, when you install a new .Net or run on a machine with a different version, you need to ensure you find a version of regasm. Here's a solution to find the regasm.exe from the most current .Net installed regasm.

Within a bat file:

for /f %%a in ('dir %windir%\Microsoft.Net\Framework\regasm.exe /s /b') do set currentRegasm="%%a"
%currentRegasm% "full\path\to\your.dll" /options

Outside of a bat file (i.e. command prompt), just use %a instead of %%a

Melanesian answered 28/2, 2017 at 4:49 Comment(0)
C
1

Execute only 1 of the below
Once a command works, skip the rest/ below to it:

Normal:

%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\RegAsm.exe myTest.dll
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\RegAsm.exe myTest.dll /tlb:myTest.tlb
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\RegAsm.exe myTest.dll /tlb:myTest.tlb /codebase

Only if you face issues, use old version 'v2.0.50727':

%SystemRoot%\Microsoft.NET\Framework\v2.0.50727\RegAsm.exe myTest.dll
%SystemRoot%\Microsoft.NET\Framework\v2.0.50727\RegAsm.exe myTest.dll /tlb:myTest.tlb
%SystemRoot%\Microsoft.NET\Framework\v2.0.50727\RegAsm.exe myTest.dll /tlb:myTest.tlb 

Only if you built myTest.dll for 64bit Only, use 'Framework64' path:

%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\RegAsm.exe myTest.dll
%SystemRoot%\Microsoft.NET\Framework64\v2.0.50727\RegAsm.exe myTest.dll

Note: 64-bit built dlls will not work on 32-bit platform.

All options:

See https://learn.microsoft.com/en-us/dotnet/framework/tools/regasm-exe-assembly-registration-tool

Consubstantiation answered 27/7, 2018 at 2:57 Comment(0)
N
0

For the 64-bit RegAsm.exe you will need to find it someplace like this:

c:\Windows\Microsoft.NET\Framework64\version_number_stuff\regasm.exe
Noria answered 2/6, 2014 at 21:15 Comment(0)
R
0

By dragging and dropping the dll onto 'regasm' you can register it. You can open two 'Window Explorer' windows. One will contain the dll you wish to register. The 2nd window will be the location of the 'regasm' application. Scroll down in both windows so that you have a view of both the dll and 'regasm'. It helps to reduce the size of the two windows so they are side-by-side. Be sure to drag the dll over the 'regasm' that is labeled 'application'. There are several 'regasm' files but you only want the application.

Reflection answered 18/9, 2015 at 13:34 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.