Can't get File to Register

G

Guest

"In talking with System Engineering, we found on your system, this problem is
due to the MFC71.dll file in the c:\Windows\system32 directory not being
registered. If your System Admin tries to register this file, it will fail.
This is an OS file"

Anyone know how to get this file to register? Nothing seems to work. Thanks
 
G

Guest

rick said:
"In talking with System Engineering, we found on your system, this problem is
due to the MFC71.dll file in the c:\Windows\system32 directory not being
registered. If your System Admin tries to register this file, it will fail.
This is an OS file"

Anyone know how to get this file to register? Nothing seems to work. Thanks

Hi Rick,
MFC 7.1 cannot register some components in your MFC application if you
specify a NULL external_name parameter
http://support.microsoft.com/kb/835428/
http://msdn2.microsoft.com/en-us/library/aa984696(VS.71).aspx
http://www.liutilities.com/products/wintaskspro/dlllibrary/mfc71/
Try to Scan for malwares and Viruses on this machine and it will be better
if you mentioned what application/program is looking for this DLL, is it net
framework, Visual Basic, Outlook or an Anti-Virus..etc..
Try to re-register this way:
Open a run command and type in:
regsvr32 mfc71.dll click [OK]
Also run disk cleanUp and Run this command:
sfc /scannow click [OK]
HTH.
Let us know.
nass
===
www.nasstec.co.uk
 
W

Wesley Vogel

Are you sure that MFC71.dll is in c:\Windows\system32. The three copies
that I have are loctated elsewhere.

C:\Program Files\CyberLink\Power2Go\MFC71.dll
C:\Program Files\Grisoft\AVG7\MFC71.dll
C:\Program Files\Microsoft Works\MFC71.dll

If a .dll file is not in System32 you have to include the path in the
command. For example...

regsvr32 "C:\Program Files\Microsoft Works\MFC71.dll"

Use double quotes (") if there are spaces in the path, or the command will
fail with this message...

LoadLibrary("C:\Program") failed - The specified module could not be found.

--
Hope this helps. Let us know.

Wes
MS-MVP Windows Shell/User

In
 
G

Guest

Wesley Vogel said:
Are you sure that MFC71.dll is in c:\Windows\system32. The three copies
that I have are loctated elsewhere.

C:\Program Files\CyberLink\Power2Go\MFC71.dll
C:\Program Files\Grisoft\AVG7\MFC71.dll
C:\Program Files\Microsoft Works\MFC71.dll

If a .dll file is not in System32 you have to include the path in the
command. For example...

regsvr32 "C:\Program Files\Microsoft Works\MFC71.dll"

Use double quotes (") if there are spaces in the path, or the command will
fail with this message...

LoadLibrary("C:\Program") failed - The specified module could not be found.

--
Hope this helps. Let us know.

Wes
MS-MVP Windows Shell/User

In

Thanks for the help. I'll let you know what happens.
 
G

Guest

Finally got this fixed. It involved copying the MFC71U.DLL file manually from
a program install directory to the system32 directory. Additional information
that may be helpful follows:

For some reason unknown to us on your machine, the Operating system would
not allow us to copy the

MFC71U.DLL file to the system32 directory.



We used a program called “Dependency Walker†to check the
DockingPane.unicode.ocx file that would not register.

This is a valuable program that we just got our hands on. We found reference
to it on Microsoft.com:

www.dependencywalker.com

DW showed us that the MFC71U.DLL was missing from the system32 directory.

MFC71U.DLL is the module that contains the Microsoft Foundation Classes (MFC)

functions used by applications created in Microsoft Visual Studio
 

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