下载安装VS2019、VS2010 问题集锦:
刚进公司在下载VS2019和VS2010的过程中出现了很多问题,在此做一个记录。
主要是下载安装VS2010的问题
安装路径无法更改:
以前安装过的VS没有卸载干净,可能会导致安装时无法改变安装路径的情况。
一种解决方案
去指定路径看一下是否有残留,如果有,直接删除那个文件,我的是在E盘下的visual studio 2010文件夹,我直接把整个文件夹删除了就可以更换路径了。
也可以到微软官网下载完全清理工具(嘿嘿,没有连接,自己找找吧),但是我看说明文档只对VS2015、VS2017及以后的版本清理有效。
语言更改成英文后无法启动
在首选项中更改语言为same as Microsoft Windows无法正常启动。
我的解决方案是直接重装,但是重装了三次,前两次是因为没有卸载干净,最后一次安装前我在控制面板把安装VS2010那天安装的所有程序全都卸载了,有的无法卸载就直接暴力到相应文件夹去删除了。不知道后面vs code不能使用是不是因为这个原因。
安装好打开VS提示未能加载相应Package,无法打开项目等
可能是缺乏ActivityLog.xml,在提示的对应路径下添加该文件并在里面写上内容即可。
参考以下链接解决。
https://blog.csdn.net/weixin_41213648/article/details/84945369
贴一下xml内容:
<entry>
<record>257</record>
<time>2010/05/02 20:36:35.490</time>
<type>Error</type>
<source>VisualStudio</source>
<description>CreateInstance failed for package [Microsoft.Data.Entity.Design.BootstrapPackage.BootstrapPackage, Microsoft.Data.Entity.Design.BootstrapPackage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]</description>
<guid>{7A4E8D96-5D5B-4415-9FAB-D6DCC56F47FB}</guid>
<hr>80070002</hr>
<errorinfo>Could not load file or assembly 'Microsoft.Data.Entity.Design.BootstrapPackage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.</errorinfo>
</entry>
<entry>
<record>258</record>
<time>2010/05/02 20:36:35.513</time>
<type>Error</type>
<source>VisualStudio</source>
<description>End package load [Microsoft.Data.Entity.Design.BootstrapPackage.BootstrapPackage, Microsoft.Data.Entity.Design.BootstrapPackage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]</description>
<guid>{7A4E8D96-5D5B-4415-9FAB-D6DCC56F47FB}</guid>
<hr>80004005 - E_FAIL</hr>
<errorinfo>Could not load file or assembly 'Microsoft.Data.Entity.Design.BootstrapPackage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.</errorinfo>
</entry>
XML View Code
VS2010无法创建C++项目
解决办法:
1、打开cmd,以管理员身份运行,输入regsvr32 %windir%\system32\jscript.dll
2、打开Visual Studio 命令提示符(2010),以管理员身份运行,输入devenv/Resetsettings
3、打开控制面板进行Windows更新,更新Microsoft Visual Studio 2010 Service Pack 1 更新 (KB2938807)。
参考以下链接解决。
https://blog.csdn.net/baidu_28570683/article/details/81174242
VS2010编译失败,显示Cannot open include file: 'stdio,h':No such file or directory。并弹出:xxxx系统找不到指定文件。
解决办法:
在VS2010的文件夹下添加 include 包含的头文件。我的是在:D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include。(我是复制了同事的include文件夹)
也可能是VS因为安装在不同的盘,导致无法自动读取include所在位置,可能需要自己配置一下。这里就不给方法咯。