Microsoft Visual C++ 2005 Redistributable不能删除旧版本的问题

本文主要是介绍Microsoft Visual C++ 2005 Redistributable不能删除旧版本的问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

帮助领导搞Matlab 2010a 绿色版; 领导把绿色版的文件夹挪了一下位置 (领导就是领导,做什么都按照自己的想当然的想法做)

然后, 脆弱的绿色版Matlab 2010a Portable就罢工了. 症结出在 绿色版每次挪动都要重新检测 Microsoft Visual C++ 2005 Redistributable这个补丁;

需要先卸载旧版本,再安装新版本; 但是, 旧版本卸载失败;

 

微软提供的官网的补丁, 貌似有多个版本.

百度知道里面这个链接有个答案:

http://zhidao.baidu.com/question/236064747.html

 

内容如下: 

最佳答案

我遇到了和你一样的问题,找了很多方法,最后终于搞定,希望能帮到你。
1.上微软官网下载Microsoft Visual C++ 2005 SP1 Redistributable Package (x86)的安装包,2.6M大,网址http://www.microsoft.com/downloads/zh-cn/details.aspx?FamilyID=200B2FD9-AE1A-4A14-984D-389C36F85647
2.右键用WinRAR解压缩软件打开下载到的vcredist_x86.exe,解压得到VCREDI~3.EXE,继续用WINRAR打开VCREDI~3.EXE解压出里面的vcredist.msi这个文件,这个就是需要的源文件。
3.在出错对话框中选择这个文件加载,再点确定就能卸载了。

 

我根据链接下载了之后,发现仍旧不行.

后来干脆搜微软官网上英文版的答案,才发现, VC++2005 Redistributable居然在微软自己官网也有几个版本, windows 7 x86下面好用的一个应该是:

http://www.microsoft.com/download/en/confirmation.aspx?id=5638

http://www.microsoft.com/downloads/info.aspx?na=41&srcfamilyid=200b2fd9-ae1a-4a14-984d-389c36f85647&srcdisplaylang=en&u=http%3a%2f%2fdownload.microsoft.com%2fdownload%2fe%2f1%2fc%2fe1c773de-73ba-494a-a5ba-f24906ecf088%2fvcredist_x86.exe

我最后是通过运行这个才搞定了.

 

--我于是就纳闷了: 同是微软官网的东西, 差别咋就这么大涅?

指示这个答案的原文链接如下:

http://answers.microsoft.com/en-us/windows/forum/windows_7-windows_update/visual-c-2005-redistibutable-error-1714/aa74f09e-7e5e-4fe0-8907-49d8feb7d8ed?tm=1322989764880

 

I solved it! I’m on Windows 7 32 bit.

For me, this problem became a bigger problem when I could not install Nero10 which wanted to use the right C++2005 Redistributable.

Here's how I solved it:

Elesewhere it is often suggested to try and install the update manually. This always ended in failure with the update asking me to specify the right path to the update and never accepting it.

Then I noted there are several versions of the vcredist_x86.exe around. The one that worked for me is the 6.0.3790   that I found here:

http://www.microsoft.com/download/en/confirmation.aspx?id=5638

Just to be complete, I also found a v. 6.0.2900 that didn’t work which is here:

http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=14431

so don’t download that.

Try to just install the 6.0.3790 first, maybe this is just a better or bugless update. If that doesn’t work, well, here’s what I did just before that:

In the Windows uninstall software page (not on the installed updates page) you will find one or more Microsoft Visual C++ 2005 updates (and 2008). I tried uninstalling the 2005 ones (we’ll put them back later) , and then again the resource not found error came up, making it impossible to uninstall.

Then, with Tune up Utilities 2010, I was able to just kick the entry from the installed software list. Ashampoo Uninstaller and some other utilities also have the option to get something off the list if you cannot uninstall them. It just scratches the entry in some way. I'm sure a plain regedit could do it too.

After this and a reboot to make sure, I was able to install the 6.0.3790 update found on the first link above. From there on, windows update will pick up any updating and reinstalling of the redistributables that is left to do. And after that Nero10 installed fine as well.

I hope this works for some people and saves you time.

Greets,

Dreamtreater

 

 


这篇关于Microsoft Visual C++ 2005 Redistributable不能删除旧版本的问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/676065

相关文章

C++中unordered_set哈希集合的实现

《C++中unordered_set哈希集合的实现》std::unordered_set是C++标准库中的无序关联容器,基于哈希表实现,具有元素唯一性和无序性特点,本文就来详细的介绍一下unorder... 目录一、概述二、头文件与命名空间三、常用方法与示例1. 构造与析构2. 迭代器与遍历3. 容量相关4

C++中悬垂引用(Dangling Reference) 的实现

《C++中悬垂引用(DanglingReference)的实现》C++中的悬垂引用指引用绑定的对象被销毁后引用仍存在的情况,会导致访问无效内存,下面就来详细的介绍一下产生的原因以及如何避免,感兴趣... 目录悬垂引用的产生原因1. 引用绑定到局部变量,变量超出作用域后销毁2. 引用绑定到动态分配的对象,对象

IDEA和GIT关于文件中LF和CRLF问题及解决

《IDEA和GIT关于文件中LF和CRLF问题及解决》文章总结:因IDEA默认使用CRLF换行符导致Shell脚本在Linux运行报错,需在编辑器和Git中统一为LF,通过调整Git的core.aut... 目录问题描述问题思考解决过程总结问题描述项目软件安装shell脚本上git仓库管理,但拉取后,上l

idea npm install很慢问题及解决(nodejs)

《ideanpminstall很慢问题及解决(nodejs)》npm安装速度慢可通过配置国内镜像源(如淘宝)、清理缓存及切换工具解决,建议设置全局镜像(npmconfigsetregistryht... 目录idea npm install很慢(nodejs)配置国内镜像源清理缓存总结idea npm in

pycharm跑python项目易出错的问题总结

《pycharm跑python项目易出错的问题总结》:本文主要介绍pycharm跑python项目易出错问题的相关资料,当你在PyCharm中运行Python程序时遇到报错,可以按照以下步骤进行排... 1. 一定不要在pycharm终端里面创建环境安装别人的项目子模块等,有可能出现的问题就是你不报错都安装

idea突然报错Malformed \uxxxx encoding问题及解决

《idea突然报错Malformeduxxxxencoding问题及解决》Maven项目在切换Git分支时报错,提示project元素为描述符根元素,解决方法:删除Maven仓库中的resolv... 目www.chinasem.cn录问题解决方式总结问题idea 上的 maven China编程项目突然报错,是

Python爬虫HTTPS使用requests,httpx,aiohttp实战中的证书异步等问题

《Python爬虫HTTPS使用requests,httpx,aiohttp实战中的证书异步等问题》在爬虫工程里,“HTTPS”是绕不开的话题,HTTPS为传输加密提供保护,同时也给爬虫带来证书校验、... 目录一、核心问题与优先级检查(先问三件事)二、基础示例:requests 与证书处理三、高并发选型:

Linux命令rm如何删除名字以“-”开头的文件

《Linux命令rm如何删除名字以“-”开头的文件》Linux中,命令的解析机制非常灵活,它会根据命令的开头字符来判断是否需要执行命令选项,对于文件操作命令(如rm、ls等),系统默认会将命令开头的某... 目录先搞懂:为啥“-”开头的文件删不掉?两种超简单的删除方法(小白也能学会)方法1:用“--”分隔命

前端导出Excel文件出现乱码或文件损坏问题的解决办法

《前端导出Excel文件出现乱码或文件损坏问题的解决办法》在现代网页应用程序中,前端有时需要与后端进行数据交互,包括下载文件,:本文主要介绍前端导出Excel文件出现乱码或文件损坏问题的解决办法,... 目录1. 检查后端返回的数据格式2. 前端正确处理二进制数据方案 1:直接下载(推荐)方案 2:手动构造

C#自动化实现检测并删除PDF文件中的空白页面

《C#自动化实现检测并删除PDF文件中的空白页面》PDF文档在日常工作和生活中扮演着重要的角色,本文将深入探讨如何使用C#编程语言,结合强大的PDF处理库,自动化地检测并删除PDF文件中的空白页面,感... 目录理解PDF空白页的定义与挑战引入Spire.PDF for .NET库核心实现:检测并删除空白页