MsiLoadr.Bin 'Interface not registered'

J

Jerry Harper

Trying to Create a msi (Setup project) for a service and I received
the following Error:


D:\Projects\TestSetup.vdproj Could not find file 'D:\Program
Files\Microsoft Visual Studio
..NET\Common7\Tools\Deployment\.\MsiRedist\1033\MsiLoadr.Bin'
'Interface not registered'

Searching through Google, did not immediately produce results. I
found a related error. There was a solution that worked for Me. Here
it is:

1. You need to reregister every OCX, Exe and DLL. Create a CMD file
with the following three lines:
for %%v in ( *.dll ) do regsvr32 /s %%v
for %%v in ( *.exe ) do regsvr32 /s %%v
for %%v in ( *.ocx ) do regsvr32 /s %%v

2. Then run it out of two directories.
WINNT\SYSTEM32
WINNT\SYSTEM32\WBEM

3. Open MSVS and rebuild. Mine worked, I hope your does too!


Special Thanks to those who found that this would fix the problem.
Regsvr32 produced 4 errors while running the .bat file in the system32
directory.

I started MSVS up and tried to build the msi and it worked.

I posted this because several answers suggest that you could only
reinstall the operating system and Visual Studio to fix this problem.
(My system was Windows 2000 pro) MSVS 7.1.3088 Framework 1.1.4322
 
Joined
May 15, 2006
Messages
1
Reaction score
0
Thank you

I have used you bat file and it work for me to creat set up for VB.net on Windows XP. Thank you very much.
 
Joined
Dec 15, 2006
Messages
1
Reaction score
0
CMD File??

Hi All,

I got the same error.

I don't know how to create CMD file.

Plz anyone can explain me how to create CMD file and solve this problem.

Thankz.

Rgds,
akkansha
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top