新公司的机器都用的server2003,但是vs从2008又回到了2005的时代,昨天开始装2005,将近下班时开始装vssp1,就不说sp1安装死慢吧,装了半天给了来了个Error 1718. File was rejected by digital signature policy错误,文件的数字签名被你的本地软件策略给拒绝了,来看看解决方法:(我的e文系统,zh-cn雷同)
1.start->run->[type]control admintools
->Local Security Policy(本地安全策略)
->[展开]software restriction policies(软件限制策略)
->如果其下没有项目,右键然后选择new software restriction policy(新建策略)
->然后右键Enforcement(强制)->properties(属性)
->选择“all users except local administrators”(除本地管理员以外的所有用户)
->然后重启,这个1718的错误就可以解决了
然后对于安装sp1死慢的问题,主要是由于win installer的cache造成的,不直接双击sp来安装而是用以下脚本来安装即可解决问题:
Copy to Clipboard引用的内容:[www.veryhuo.com]
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
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
把以上脚本保存为sp.bat,放到和补丁程序同一个目录下,即可大大提升sp1的安装速度。
注意这句“start /wait VS80sp1-KB926601-X86-ENU.exe ”,是你sp安装文件的文件名,我的是VS80sp1-KB926601-X86-ENU.exe ,个人视情况写正确的文件名。