I have a DLL I wish to register with my GAC. I enter the command:

gacutil /i c:\temp\msvcr100.dll

and I get the error:

Failure adding assembly to the cache:   The module was expected to contain an as
sembly manifest.

All I have is the DLL. Is there a way to create / fake / bypass it?

For those interested, I am attempting to extract the Visual Studio 2010 & .NET 4.0 CTP from the VHD and run it on my physical box. As a side note, has this been attempted?

link|improve this question

feedback

6 Answers

up vote 4 down vote accepted

Is this actually a GAC-able DLL? It doesn't seem like it. Maybe it's just reg-able? Why do you want to GAC it?

link|improve this answer
I think so, but not sure. I got an error that said the file wasn't installed on the computer, and I had pulled it out of a VPC's System32. Just putting it into my system32 didn't work. – tsilb Mar 12 '09 at 19:43
1  
This is the C++ runtime library DLL, if I'm not mistaken, written in native code, and not GAC-able. I think you are going to hit quite a few hurdles trying to accomplish what you are trying to accomplish. Try sticking it in the bin folder or maybe registering it with regsvr32 or regsvcs? – Erik A. Brandstadmoen Apr 7 '09 at 19:02
Registering with regsvr32 worked in my case. – Julien N Aug 25 '10 at 8:48
feedback

"For those interested, I am attempting to extract the Visual Studio 2010 & .NET 4.0 CTP from the VHD and run it on my physical box. As a side note, has this been attempted?"

FYI - At this point there is a full ISO image of Beta 1 you can download and legally run on your desktop if you want.

VS 2010 beta 1 on MSDN

It is only for MSDN subscribers at this point though. Will be added to Microsoft downloads later.

EDIT: It is now open for all to download

link|improve this answer
feedback

Are you sure that "extract[ing] the Visual Studio 2010 & .NET 4.0 CTP from the VHD" doesn't violate the license agreement? If Microsoft wanted you to "run it [VS2010] on my physical box", they would have just made it available as a noraml install.

link|improve this answer
I dunno, they're pretty much all the same. I don't think it constitutes reverse engineering... – tsilb Mar 16 '09 at 4:57
feedback

If you can create the manifest (I'm not sure what one should look like) it's easy enough to just load the DLL into Visual Studio's resource editor (File->Open->File->[select dll]->[click down chevron on the Open button]->Resource View) and just add the manifest to the dll.

link|improve this answer
feedback

I suppose the same process is done when you drag and drop to C:\Windows\assembly?

link|improve this answer
Yep, same error. Though this time it's in a nicer-looking but un-copy-and-pasteable GUI dialog. – tsilb Mar 12 '09 at 0:25
Ah damn. Well good luck with your hacker and make sure to report back on your results! – Nick Devereaux Mar 12 '09 at 3:15
feedback

I've experienced this with (apparently) corrupt dlls (I assume failed copies from USB drives).

link|improve this answer
feedback

protected by Will Aug 25 '10 at 10:12

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.