There have been a couple of posts about this error on the vc++ forms
Answers have been from checking to see if there is a manifest
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=15218&SiteID=1

To just downloading msvcr80.dll from dll-files.com and copy it to system32 folder.
http://www.dll-files.com/dllindex/dll-files.shtml?msvcr80  (not recommended, but can't ignore that it solved the problem for a lot of folks)
Or if you have a winSxS folder for .Net it should have a copy of it you can copy to the system32 folder

>From all I've seen the vc++ 2005 release, it requires a nsd.exe.manifest file (again take from an MS form)
Like
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
<assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'>
<dependency>
  <dependentAssembly>
     <assemblyIdentity type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*' />
   </dependentAssembly>
</dependency>
<dependency>
    <dependentAssembly>
       <assemblyIdentity type='win32' name='Microsoft.VC80.CRT' version='8.0.50608.0' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b' />
    </dependentAssembly>
</dependency>
</assembly>

Just using notepad and saving the file with the nsd.exe file should help it.

HTH
P

shedis wrote:
Hi,
I finally managed to compile aolserver using visual c++ 2005 express edition sp1.

But when i try  to run nsd.exe  (bin\nsd.exe -ft nsd.tcl) i get an error saying:

"nsd.exe - Unable to Locate Component"
This application has failed to start because MSVCR80.dl was not found. Re-installing the application may fix this problem.

does anyone have a solution for this case?

kind regards,
shedi


--
AOLserver - http://www.aolserver.com/

To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the
body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank.


--
Patrick O'Leary

AOL Syndication Technologies
Phone: + 1 703 265 8763

Honesty is the best policy, but insanity is a better defense !
View Patrick O Leary's LinkedIn profileView Patrick O Leary's profile

-- AOLserver - http://www.aolserver.com/

To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank.

Reply via email to