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改名直接禁用之。