Tagged Questions
The regsvr32 tag has no wiki summary.
9
votes
3answers
2k views
Visual Studio: Run C++ project Post-Build Event even if project is up-to-date
In Visual Studio (2008) is it possible to force the Post-Build Event for a C++ project to run even if the project is up-to-date?
Specifically, I have a project which builds a COM in-process server ...
6
votes
6answers
546 views
How do I check if a COM dll is registered in C#
I created a Office Add-In in VS 2008, C#, .NET 3.5, and VSTO. It is deployed via ClickOnce. A run-time configuration form executes regsvr32 to register "fooapi.dll" included with the project that can ...
5
votes
1answer
83 views
MSI Error - Failure of regsvr32 custom action
Brief
I have an installation package (MSI based) which attempts to register a dll file for use as a Windows Explorer Bar (Internet Explorer Toolbar).
The custom action is defined as follows:
...
4
votes
3answers
411 views
What does regsvr32 filename.ax actually do?
regsvr32 filename.ax
I just see it said something installed successfully,but what's the whole story?
4
votes
2answers
4k views
Unable to register the DLL/OCX: RegSvr32 failed with exit code 0xC0000005 with Inno Setup 5.2.3
I am trying to register a COM DLL using Inno Setup in a setup package I created. During test installations on Vista, I get this error:
Unable to register the DLL/OCX: RegSvr32 failed with exit ...
4
votes
1answer
2k views
msbuild fails to register output
I'm trying to get our build scripts (which use MSBuild) working correctly on Vista and am finding that projects that have the Register Output (in linker options) option set to True fail to build from ...
3
votes
2answers
8k views
Windows 7: unable to register DLL - Error Code:0X80004005
When I try to register a COM DLL,
regsvr32 MyComobject.dll
I get the following error message:
The module "MyComobject.dll" was loaded but the call to DllRegisterServer failed with error code ...
3
votes
1answer
730 views
Windows XP: RegSvr32 /i:[cmdline]: What exactly is “Command line” in this case?
I am trying to register a dll using regsvr32 in a cmd window. I do this on an administrator account, but I need this dll to be registered for all the users. Turns out regsvr32 does not do that, it ...
3
votes
1answer
1k views
Regsvr32 fails to find the dll in the current folder
When I use "regsvr32 foo.dll" i get a "The specified module cannot be
found" error.
The error is being caused because regsvr32 cannot find
the file even though it is the current folder.
I have ...
3
votes
4answers
2k views
How do I unregister COM dlls initially added with RegSvr32 when the /u arg doesn't work?
Right, initially ran:
c:\regsvr32 Amazing.dll
then, (accidentally - I might add) I must have run it again, and (indeed) again when new versions of 'Amazing.dll' were released. Yes - I know now I ...
2
votes
1answer
71 views
Unregistering a COM dll using regsvr32
I've registered a COM dll using the regsvr32 command and I forgot the exact location of the assembly from where I did it. Now I'm facing trouble to unregister the dll. How I can unregister it? I tried ...
2
votes
3answers
218 views
Regsvr32 strange behaviour = > Regsvr32 does not give any success or failure message
I have an directShow filter: MyFilter.ax
When I try to register MyFilter.ax with Regsvr32 utility it gives NO error or any message(success or failure). But the filter is not registered.
Regsvr32 ...
2
votes
1answer
121 views
Registering a COM object created with VS C# 2010
I created a COM object with C# yesterday which resulted in three files in the bin/release directory of my VS 2010 project. comclass.dll, comclass.pdb and comclass.tlb. Now, when I build the solution ...
2
votes
3answers
805 views
Using a custom DirectShow filter (DLL, registered)
I've written a small transform filter (derived from TransInPlaceFilter baseclass), and managed to make it work properly in a Directshow graph, entirely coded in C++. I basically followed the 5 first ...
2
votes
1answer
995 views
How do I register a COM DLL written in C# with Regsvr32?
I have a VB6 application that uses a COM DLL. The DLL is written in C#. In the C# project properties I have the "Register for COM interop" option checked. The VB6 app works fine on my development ...
2
votes
1answer
334 views
Remote DLL Registration without access to HKEY_CLASSES_ROOT
We have a legacy VB6 application that updates itself on startup by pulling down the latest files and registering the COM components. This works for both local (regsvr32) ActiveX COM Components and ...
2
votes
1answer
707 views
Even after running Regsvr32, I get aximp error
I have a 32-bit ActiveX control written in C++.
When trying to import it to .Net app using aximp on a 64 bit machine, it gives
AxImp Error: Did not find a registered ActiveX control in 'xxx.dll'.
I ...
2
votes
4answers
518 views
Do I need to register the COM dll to be able to reference it on the .NET project?
I'm trying to reference a COM dll in visual studio by using the Browse tab and selecting the DLL. I noticed that if the DLL is registered on the system with regsvr32 I can reference it, but if it's ...
2
votes
1answer
3k views
Runtime C# knowing if 32-bit or 64-bit version of COM Interface is being used
I want to build a DLL Class Library use COM Interop, with C#, target ANY CPU, and register it as 32-bit and 64-bit interfaces.
I want to be able to, at runtime, display what interface was used - if ...
2
votes
1answer
812 views
RegSvr32 registering yet nothing actually registered
A rather odd experience. Using the latest PDK (v7.3) from ActiveState, I used perlctrl to build a COM DLL. Perlctrl ran without a hitch. OLEView read the typelib okay. RegSvr32 registered it okay. ...
1
vote
1answer
184 views
Unable to register dll using regsvr32:The module “*.dll” failed to load
There is a similar question from stackoverflow. But I didn't find that the answer is helpful. I also used Google searched the websites, I have watched here and here.
I have tried the method they told ...
1
vote
2answers
146 views
dllregisterserver in iviewers failed
When I try to run Oleview I get an error saying that DllRegisterServer failed for IViewer.dll (sorry I wanted to post a screenshot but I can't until I get 10 reputation =p)
Oleview will run but like ...
1
vote
0answers
163 views
c++ shell extension - can't register on 32-Bit
I've created a C++ Shell Context Menu Extension using this Template.
On 64-Bit computers, it works great, but I can't register it on 32-Bit computers. Even the unmodified original version of the ...
1
vote
1answer
356 views
64 bit dll register
I have converted 32 bit COM dll into 64 bit dll by using x64 build.I tried to register
this 64 bit dll into 64 bit windows 2008 server uisng C:windows\system32 regsrv32.exe .But i'm getting an error ...
1
vote
2answers
234 views
C# - Register a third party COM DLL during a pre-build event
I have a dependency on several COM components. My project is managed. I want to ensure that the most recent version of the COM DLL is registered pre-build. I have added regsvr32 calls on the DLLs in ...
1
vote
1answer
276 views
DllMain freezing When register a COM dll
I try to register a COM dll named MixCenter.dll. I have found out all the dlls which it is dependent on. When executives its DllMain first time, it freezes and never returns. It seems like a ...
1
vote
3answers
789 views
On Windows7, regsvr32 doesn't write to HKCR\CLSID
I have created a new simple COM object in Visual Studio 2008 using the ATL-wizard. The object has a single class and simple methods. The ATL-wizard did generate .rgs-files for my class.
When I run ...
1
vote
3answers
944 views
How to generate type library from unmanaged COM dll
I have to use third party, unmanaged COM dll into my .NET application. I need to modify this assembly to produce a custom RCW. In order to Edit Interop Assembly I need the type library of the ...
1
vote
3answers
12k views
How do I register a DLL on Windows 7 64-bit?
I have tried to use the following code:
cd c:\windows\system32
regsvr32.exe dllname.ax
But this is not working for me. How can I register a DLL on Windows 7 with a 64-bit processor?
1
vote
2answers
412 views
How to get an ActiveX component's registered path
Greetings!
I've got a registered ActiveX component which I'm referencing in a C# project. However, I'd like to know the original path to the actual component being run. This is not the execution path ...
1
vote
1answer
258 views
“regsvr32 /u ” fails when there's white space in the full path of the dll?
When I tried to unregister a dll :
regsvr32 /u IPCamFilter1.ax
A message box saying LoadLibrary(IPCamFilter1.ax) fails, how can I unregister it ?
1
vote
2answers
308 views
Regsvr32 crashes on Window 7
I have an x64 (64-bit) COM dll. When trying to register it with Regsvr32 on Windows 7 - Regsvr32 crashes.
Regsvr32 is run under cmd with administrative priviliges ("run as administrator"), I tried ...
1
vote
3answers
154 views
Is there a .NET or Win32 version of regsvr32?
Is there a .NET or Win32 version of regsvr32? I would like to register a COM DLL with code instead of shelling out to the regsvr32 program.
1
vote
2answers
444 views
Descriptions of error codes returned by regsvr32
Where can I find documentation that describes the meaning of error codes returned by regsvr32, such as 0x80070716?
1
vote
2answers
400 views
Why won't my DLL register with RegSvr32?
I have to register a .dll file named MatchMolDLL.dll.
To register the DLL I followed these steps:
1) Goto RUN
2) Type “cmd”
3) Type “regsvr32 MatchMolDLL.dll”
However regsvr32.exe reports:
...
1
vote
1answer
266 views
If a DLL or OCX is registered by a non-administrator user and regsvr32 says it succeeds, could it still fail to be registered properly?
If a DLL or OCX is registered by a non-adminstrator user and regsvr32 says it succeeds, could it still fail to be registered properly?
1
vote
3answers
325 views
Using regsvr32, do you need to unregister a dll or ocx before registering it again?
Using regsvr32, do you need to unregister a dll or ocx before registering it again?
Or will registering it do that anyway?
1
vote
3answers
97 views
Getting notified about new COM server registration
I'm trying to find a way to identify a newly registered or unregistered (via regsvr32) COM servers, which are added to the registry (CLSID). Is there any callback function I can use?
I don't really ...
1
vote
1answer
399 views
Regsvr32 and Desktop authority
I am registering a delphi assembly using regsvr32. We are currently using Desktop Authority to deploy our installation package for the .NET application. We are needing to use the delphi assembly in ...
1
vote
4answers
1k views
Register a C# COM component?
I have developed a C# com component which I am using from managed c++. On my dev machine when everything works fine. However when I distribute the files, I received an error that the component has not ...
1
vote
3answers
443 views
How to register COM libraries at runtime?
Let's say I'm developing an application that installs COM component and installer registers them. This works great.
Now the software is required to run from a memory stick. How can I register my ...
0
votes
1answer
14 views
My installer fails to register a DLL with E_ACCESSDENIED, and the DLL has a padlock icon when viewed in Explorer
I use Inno Setup as my installer. The installer failed to register a DLL. It turned out that regsvr32 failed with error code 0x80070005, which stands for E_ACCESSDENIED. When I opened "C:\Program ...
0
votes
0answers
46 views
Dll doesn't work on 64bit system
I try to use skype4com.dll in my project on 64bit windows7, but I get error:
Retrieving the COM class factory for component with CLSID
{830690FC-BF2F-47A6-AC2D-330BCB402664} failed due to the ...
0
votes
1answer
36 views
COM object fail, class not registered error, WMEncBasicEdit
I have to cut WMA file from start position to end position. I'm trying to use WMEncoder. I've installed Windows Media Encoder SDK 9 and added a reference to WMEncoder lib for my project. But when I'm ...
0
votes
1answer
55 views
Is libpng12.dll not compatible with Win7 (64-bits)?
I use libpng package in VisualStudio 2008 to read the png images and my program has to use the libpng12.dll. I putted the libpng12.dll in Windows\System32 and Windows\SysWOW64 and wanted to use ...
0
votes
0answers
67 views
regsvr32 fails unless I copy regsvr32.exe into current folder
On Win XP SP3: I have a COM DLL and all of it's non-system dependent dll's, in the same folder. With a command prompt in that folder, I run "regsvr32 file.dll", and get the message:
...
0
votes
0answers
145 views
GSSF.ax will not register
I'm using the GSSF sample for directshow. on my developer desktop i can run and register GSSF.ax and it works. I create a new windows 7 x86 virtual machine and try to register the gssf.ax under CMD ...
0
votes
2answers
194 views
How to register .ocx file from code
How to register .ocx file with (regsvr32) from code in C# ?
i use below code but says :
The system cannot find the file specified
System.Diagnostics.Process.Start("regsvr32 " + ocxfile_path);
...
0
votes
1answer
117 views
COM dll not registering anymore
I'm trying to register a COM dll sent to me by a company to use to talk to one of their devices. I was previously able to register it on this computer, but a few days ago it started throwing errors, ...
0
votes
1answer
115 views
whats is the difference between regsvr32 and GAC?
Whats is the difference between regsvr32 and GAC?
Of course regsvr32 is for COM and GAC is for .net assemblies but is that the only difference?