This application has failed to start because MSVCR80.dll was not f

G

Guest

I don't know if this is what we are supposed to do to resolve the issue, but
I updated the manifest file (MSASCui.exe.manifest) for defender because I was
getting the error message "This application has failed to start because
MSVCR80.dll was not found."
I added in the section for the dependency on the Microsoft.VC80.CRT and
everything starting working. I based this on the information on
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=140519&SiteID=1

The MSASCui.exe.manifest has been updated to read as follows:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Copyright © 1981-2001 Microsoft Corporation -->
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
version="5.1.0.0"
processorArchitecture="x86"
name="Microsoft.Windows.Defender.UI"
type="win32"
/>
<description>Microsoft Windows Defender</description>
<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"
language="*"
/>
</dependentAssembly>
</dependency>
</assembly>
 

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