CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 2016
    Posts
    1

    windows regsrv32

    Hi, i have no idea how exactly this process work. When i successfully registered dll library, i have not seen any change. I try register dll, what is already registered, what make this process when
    1) current library has the same version, but another path?
    2) current library has newer version
    3) current library has older version
    Registry changes should be immediate or take effect after restart?
    It depends if the library is currently used?

  2. #2
    Join Date
    Nov 2000
    Location
    Voronezh, Russia
    Posts
    6,620

    Re: windows regsrv32

    regsvr32: The tool is to load the specified activex dll and call its DllRegisterServer, or DllUnregisterServer when /u key specified. Again, the activex code actually does all registration, and the tool just loads the dll and calls its functions. The tool never bothers about version and path, it just makes appropriate changes in the registry keys the server internals refer to. As any other registry changes, those are applied immediately.
    Last edited by Igor Vartanov; April 15th, 2016 at 01:17 AM.
    Best regards,
    Igor

  3. #3
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: windows regsrv32

    In addition to what Igor said, registering 32bit COM objects on 64bit systems may store the registry settings in different locations.

    For more info, search bing or google for "registry redirection x64 regsvr32".

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured