BoolKinG's Blog
My Links
首页
新随笔
联系
聚合
管理
Blog Stats
Posts - 10
Stories - 0
Comments - 77
Trackbacks - 0
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
(9)
给我留言
查看公开留言
查看私人留言
随笔分类
C++(4)
(rss)
CG
(rss)
Crack(1)
(rss)
Game Programming
(rss)
Misc(5)
(rss)
Scripting
(rss)
随笔档案
2009年1月 (1)
2007年1月 (1)
2006年7月 (1)
2006年6月 (2)
2006年5月 (5)
搜索
积分与排名
积分 - 22598
排名 - 753
最新评论
1. generic viagra
Marriage is the only adventure open to the cowardly.
--generic viagra
2. order vicodin
Curiosity killed the cat, but for a while I was a suspect.
--order vicodin
3. cheap cialis
评论内容较长,点击标题查看
--cheap cialis
4. esomeprazole
评论内容较长,点击标题查看
--esomeprazole
5. generic cialis
评论内容较长,点击标题查看
--generic cialis
阅读排行榜
1. 学习Vim的一点心得(4417)
2. VSS的又一个Internet解决方案SourceAnywhere(2932)
3. VS2005SP1安装加速(2765)
4. porting thrift to msvc(2631)
5. boost在vc2005中的编译出现codepage警告和DEPRECATED函数的解决(2510)
评论排行榜
1. VSS的又一个Internet解决方案SourceAnywhere(58)
2. 为什么main有多种格式?(5)
3. SourceOffsite汉化版的license问题(5)
4. VS2005SP1安装加速(4)
5. boost在vc2005中的编译出现codepage警告和DEPRECATED函数的解决(2)
VS2005SP1安装加速
vs2005sp1出来已经有一段时间了,由于安装速度太慢,我一直都没有安装,今天遇到一个vs的bug,不得已需要安装sp1,上网找了一下,发现一个解决安装速度慢的方案。
之所以速度慢是很大程度上是因为windows installer的cache造成,在安装时暂时禁用掉windows installer的cache可以极大的加速sp1的安装,而且可以节省1.3G的磁盘空间。
将下面的代码存为bat文件,通过这个bat来安装sp1
reg export HKLM\Software\Policies\Microsoft\Windows\Installer installer.reg
reg add HKLM\Software\Policies\Microsoft\Windows\Installer
/
v MaxPatchCacheSize
/
t REG_DWORD
/
d
0
/
f
net stop msiserver
start
/
wait VS80sp1
-
KB926601
-
X86
-
ENU.exe
reg delete HKLM\Software\Policies\Microsoft\Windows\Installer
/
v MaxPatchCacheSize
/
f
reg import installer.reg
net stop msiserver
del
/
q installer.reg
2
>
nul
另外,VS2005的intellisense对C++来说实在太慢,代码量大的时候cpu占用率一直在100%,功能也比不上VA,将
Microsoft Visual Studio 8\VC\vcpackages\feacp.dll
改名直接禁用之。
posted on 2007-01-08 14:29
BoolKinG
阅读(2765)
评论(4)
编辑
收藏
引用
所属分类:
C++