您的位置:首页 > 大数据 > 人工智能

Package Load Failure errors in Visual Studio 2005

2008-10-13 12:30 393 查看

Definitive list of workarounds for Package Load Failure errors in Visual Studio 2005

Important note - the steps in this blog post have typically only proven useful in cases where a previous beta of Visual Studio 2005 was installed on the system prior to installing the final release of VS 2005. If you have never had a beta of VS 2005 on your system and are encountering package load failure errors, these steps will most likely not help. In that type of scenario, I recommend running devenv.exe with the /log switch (described in this MSDN topic) to create a log file of the packages it tries to load and then search in that log file for errors and warnings to help narrow this issue down further.

Ever since the final version of Visual Studio 2005 was released, I have been hearing from customers who are running into Package Load Failure errors while trying to get beta versions uninstalled and the final version installed. I have previously posted a set of steps that I have found will resolve nearly all cases of these Package Load Failure errors. However, there have been some cases where these steps are not enough and more in-depth manual removal steps have proven necessary. Up until now, I have been resisting posting the additional steps that are necessary in some cases because I really want folks to try out the other steps I have posted first. However, I am going to go ahead and post a complete set of steps and just duplicate my previous steps in an effort to communicate the workarounds I have found as widely as possible while also making my best effort to make things as easy as possible for the majority of customers.

So, without further ado, here is a complete, hopefully definitive set of steps that will help resolve all Package Load Failure errors seen while trying to use the final release of VS 2005 on a system that previously had a beta version installed. Please try these steps in the order listed and check to see if the Package Load Failure errors are resolved after completing each step so that you can try to avoid needing to perform more removal steps than are strictly necessary on your system.

Please note - if you have Dotfuscator 3.0 installed on your system, you should first try the workaround described here to see if you are running into a known issue that has been fixed by Preemptive (the company that produces Dotfuscator).

1. Try to repair the .NET Framework 2.0

Sometimes, package load failures have a very simple cause - the .NET Framework 2.0 is somehow in a broken state. Before trying any of the more complicated steps listed below, it is worth trying to repair the .NET Framework 2.0. To do this, go to the Add/Remove Programs control panel, locate the item named Microsoft .NET Framework 2.0 and choose to repair it.

2. Try to run the VS 2005 troubleshooting tool

Before trying any of the manual steps listed below in this blog post, please download and run the VS 2005 troubleshooting tool. This tool is built on the same code base as the auto-uninstall tool, but it has knowledge of some specific problems that existed in previous beta versions of VS 2005 and knows how to go in and surgically clean them up.

3. Try to run the following command line to clear out parts of the native image cache

Close Visual Studio and/or reboot the system to make sure that there will not be any files in use
Click on the Start menu, choose Run and type cmd
Type rd /s /q %windir%/assembly/NativeImages_v2.0.50727_32/Microsoft.VisualStu# and press enter to remove a subset of the native images that have proven problematic in the past from the cache.

4. Try to run the following command line to clear out all of the native image cache

Close Visual Studio and/or reboot the system to make sure that there will not be any files in use
Click on the Start menu, choose Run and type cmd
Type rd /s /q %windir%/assembly/NativeImages_v2.0.50727_32 and press enter to remove all VS 2005 native images from the cache.

5. Remove the version of VS 2005 you have installed, manually clean the system and try installing again

Uninstall all of VS 2005 using the uninstall instructions and automated uninstall tool
Click on the Start menu, choose Run and type cmd
Type cd /d %windir%/assembly
Type rd /s /q GAC_32 and then rd /s /q GAC_MSIL
Type dir and locate any directories named NativeImages_v2.0* and type rd /s /q <directory> to delete all VS 2005 native image directories as well
Using regedit.exe, remove all of the following registry sub-hives, including all registry keys and values underneath them:
HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/VisualStudio/8.0
HKEY_CURRENT_USER/SOFTWARE/Microsoft/VisualStudio/8.0
HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/MSDN/8.0
HKEY_CURRENT_USER/SOFTWARE/Microsoft/MSDN/8.0
HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/VBExpress/8.0
[b]HKEY_CURRENT_USER/SOFTWARE/Microsoft/VBExpress/8.0
HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/VCExpress/8.0
[b]HKEY_CURRENT_USER/SOFTWARE/Microsoft/VCExpress/8.0
HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/VCSExpress/8.0
[b]HKEY_CURRENT_USER/SOFTWARE/Microsoft/VCSExpress/8.0
HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/VJSExpress/8.0
[b]HKEY_CURRENT_USER/SOFTWARE/Microsoft/VJSExpress/8.0
HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/VWDExpress/8.0
[b]HKEY_CURRENT_USER/SOFTWARE/Microsoft/VWDExpress/8.0
HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Hatteras
[/b][/b][/b][/b][/b]
Run this set of steps to locate and delete any files with versions 2.0.xxxxx.xx and 8.0.xxxxx.xx that are still left on your system. Please note that all of the Package Load Failure errors that I have seen so far have been caused by files left behind in %windir%/assembly (the GAC) on the machine, so pay special attention to any leftover files in this location and make sure that all orphaned files with versions 2.0.xxxxx.xx and 8.0.xxxxx.xx are removed before attempting to reinstall VS 2005
Run this set of steps to clean up the WinSxS folder
Reboot the machine
Try to install VS 2005 again

If none of the above steps work for you, please leave a comment on this blog post or contact me and I will try my best to help you further.

<update date="12/19/2005"> Added a new step to remove some registry data related to VS 2005 as part of step 4 above </update>

<update date="1/10/2006"> Added link to information about a package load failure scenario caused by Dotfuscator 3.0 </update>

<update date="1/15/2006"> I have seen a couple of issues caused by orphaned keys under the Express Edition hives and the MSDN hives, so I added those to the list in step 4 above </update>

<update date="11/18/2006"> Added a new first step to try repairing the .NET Framework 2.0 </update>

<update date="4/2/2008"> Added caveat that the steps in this post are typically only useful when a beta of VS 2005 was previously installed on the system. </update>



Published Friday, December 16, 2005 4:14 PM by astebner
Filed under: Visual Studio and .NET Framework

Comments

Tuesday, December 20, 2005 11:44 AM by Sergey M

# re: Definitive list of workarounds for Package Load Failure errors in Visual Studio 2005

I've posted something along the same lines:

"Step by step Whidbey Beta 2 or CTP uninstallation"
http://www.usysware.com/blog/?p=72

Monday, January 02, 2006 1:34 AM by Joku

# re: Definitive list of workarounds for Package Load Failure errors in Visual Studio 2005

I would also recommend cleaning up obj directories left behind in project directories, I've seen obj dirs from old CTP's left in projects causing issues.

Also there are directories that may be left behind after uninstall in the local settings/app data etc for MSDN and VS. Also the settings paths in My Documents/Visual Studio 2005/. I'd get rid of as much of those too since I've got first hand experience of subtle issues being caused by having those left behind from the uninstalls.

Thursday, January 05, 2006 3:59 AM by Lino Barreca

# re: Definitive list of workarounds for Package Load Failure errors in Visual Studio 2005

..or try to uninstall Dotfuscator 3.0
(the integration with Visual Studio causes package load failures)

Friday, January 06, 2006 7:57 PM by Nauman

# re: Definitive list of workarounds for Package Load Failure errors in Visual Studio 2005

Just wondering if anyone else has complained of the problem that I am seeing with VS2005 Release. When I open a form, the cursor goes crazy and the whole form flickers. You have to click on one of the other tabs to get out of this state and that can take about a minute or so. This even happens with a simple application with just one button on the form and consistently happens most of the time when I switch to design view. My co-worker has also started seeing this on his machine. We both had the beta 2 installed previously and completely uninstalled it before installing the release version. The funny thing is that my other co-worker has no problems on his machine and he has the same configuration as we do.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: