RegAsm not executing.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • gopal

    RegAsm not executing.

    I installed MS DevEnv 2003 with framework 1.1.I developed a small
    application which looks out for the assembly vcersion of a .net DLL or
    EXE via code. But i have a problme durng the registration using RegAsm.

    My Question is

    Does the RegASM can be called from anywere like we call RegSvr32 or it
    will be found only in
    Visual Studio Tools Path? If the ans is yes, then should i handle this
    in code.

    I was guessing that RegASm can be called from anywhere once the .NET
    has been installed

    Please can some one give any hint how to approach this issue?

    Regards
    JP

  • Truong Hong Thi

    #2
    Re: RegAsm not executing.

    RegSvr32 is in system folder, so you can call in from anywhere.
    RegAsm is not. That mean you should include its folder in PATH
    environment variable.
    One easy way is running it with Visual Studio .NET 2003 Command Prompt,
    found in Start menu. Everything is setup for you.

    gopal wrote:
    I installed MS DevEnv 2003 with framework 1.1.I developed a small
    application which looks out for the assembly vcersion of a .net DLL or
    EXE via code. But i have a problme durng the registration using RegAsm.
    >
    My Question is
    >
    Does the RegASM can be called from anywere like we call RegSvr32 or it
    will be found only in
    Visual Studio Tools Path? If the ans is yes, then should i handle this
    in code.
    >
    I was guessing that RegASm can be called from anywhere once the .NET
    has been installed
    >
    Please can some one give any hint how to approach this issue?
    >
    Regards
    JP

    Comment

    • Radhakrishna Banavalikar

      #3
      Re: RegAsm not executing.

      From start Search for files and folders Find Regasm.exe

      Drag and drop it on the command prompt and provide the dll that you want to
      register.

      --
      Radhakrishna Banavalikar
      Vasant-Vihar, Thane, INDIA.


      "Truong Hong Thi" wrote:
      RegSvr32 is in system folder, so you can call in from anywhere.
      RegAsm is not. That mean you should include its folder in PATH
      environment variable.
      One easy way is running it with Visual Studio .NET 2003 Command Prompt,
      found in Start menu. Everything is setup for you.
      >
      gopal wrote:
      I installed MS DevEnv 2003 with framework 1.1.I developed a small
      application which looks out for the assembly vcersion of a .net DLL or
      EXE via code. But i have a problme durng the registration using RegAsm.

      My Question is

      Does the RegASM can be called from anywere like we call RegSvr32 or it
      will be found only in
      Visual Studio Tools Path? If the ans is yes, then should i handle this
      in code.

      I was guessing that RegASm can be called from anywhere once the .NET
      has been installed

      Please can some one give any hint how to approach this issue?

      Regards
      JP
      >
      >

      Comment

      Working...