Microsoft KB Archive/936707

From BetaArchive Wiki

Article ID: 936707

Article Last Modified on 12/3/2007



APPLIES TO

  • Microsoft .NET Framework 2.0



SYMPTOMS

When you start a Microsoft .NET Framework 2.0 managed application that has a Microsoft Authenticode signature, the .NET Framework 2.0 managed application takes longer than usual to start.

CAUSE

This problem occurs because a .NET Framework 2.0 managed assembly that has an Authenticode signature takes longer than usual to load. The signature is always verified when the .NET Framework 2.0 managed assembly that has an Authenticode signature is loaded.

Additionally, the .NET Framework 2.0 managed assembly may take longer than usual to load because of various other settings. For example, the .NET Framework 2.0 managed assembly may take longer than usual to load because of the network configuration.

RESOLUTION

Hotfix information

A supported hotfix is now available from Microsoft. However, it is intended to correct only the problem that is described in this article. Apply it only to systems that are experiencing this specific problem. This hotfix may receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next .NET Framework 2.0 service pack that contains this hotfix.

To resolve this problem immediately, contact Microsoft Customer Support Services to obtain the hotfix. For a complete list of Microsoft Customer Support Services telephone numbers and information about support costs, visit the following Microsoft Web site:

Note In special cases, charges that are ordinarily incurred for support calls may be canceled if a Microsoft Support Professional determines that a specific update will resolve your problem. The usual support costs will apply to additional support questions and issues that do not qualify for the specific update in question.

Prerequisites

You must have the .NET Framework 2.0 installed before you apply this hotfix.

Restart requirement

You do not have to restart the computer after you apply this hotfix.

Hotfix replacement information

This hotfix does not replace any other hotfixes.

File information

The English version of this hotfix has the file attributes (or later file attributes) that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the Time Zone tab in the Date and Time item in Control Panel.

File name File version File size Date Time
Mscordacwks.dll 2.0.50727.876 802,304 28-Apr-2007 09:22
Mscorjit.dll 2.0.50727.876 326,656 28-Apr-2007 09:22
Mscorlib.dll 2.0.50727.876 4,308,992 28-Apr-2007 09:22
Mscorpe.dll 2.0.50727.876 102,912 28-Apr-2007 09:22
Mscorwks.dll 2.0.50727.876 5,634,048 28-Apr-2007 09:22
Normalization.dll 2.0.50727.876 15,360 28-Apr-2007 09:22
Normidna.nlp Not Applicable 59,342 28-Apr-2007 09:22
Normnfc.nlp Not Applicable 45,794 28-Apr-2007 09:22
Normnfd.nlp Not Applicable 39,284 28-Apr-2007 09:22
Normnfkc.nlp Not Applicable 66,384 28-Apr-2007 09:22
Normnfkd.nlp Not Applicable 60,294 28-Apr-2007 09:22
Peverify.dll 2.0.50727.876 136,192 28-Apr-2007 09:22
Sos.dll 2.0.50727.876 382,464 28-Apr-2007 09:22
Vsavb7rt.dll 8.0.50727.876 1,330,688 28-Apr-2007 09:22


STATUS

Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.

MORE INFORMATION

This hotfix adds the generatePublisherEvidence configuration setting to the .NET Framework 2.0. After you apply this hotfix, you can use this configuration setting to disable signature verification in a .NET Framework 2.0 managed application. You can use this configuration setting in an application configuration file. To do this, add the following code to the <ApplicationName>.exe.config file for the .NET Framework 2.0 managed application.

<configuration>
    <runtime>
        <generatePublisherEvidence enabled="false"/>
    </runtime>
</configuration>

When you disable signature verification, the .NET Framework 2.0 managed application starts faster.

Note When you disable signature verification, the .NET Framework 2.0 managed application no longer receives publisher evidence. This behavior affects the .NET Framework 2.0 managed application only when you use publisher evidence or when you use the PublisherIdentityPermission class.

The generatePublisherEvidence configuration setting will be available in the version of the .NET Framework that follows the Microsoft .NET Framework 3.0.

To create an application configuration file that contains this configuration setting, follow these steps:

  1. Create a file, and then name the file the <ApplicationName>.exe.config file.
  2. In a text editor, open the file that you created in step 1.
  3. Add the following code to the file.

    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
        <runtime>
            <generatePublisherEvidence enabled="false"/>
        </runtime>
    </configuration>
  4. Save the changes to the file.


REFERENCES

For more information, click the following article number to view the article in the Microsoft Knowledge Base:

824684 Description of the standard terminology that is used to describe Microsoft software updates


Keywords: kbfix kbqfe kbcode kbhotfixserver KB936707