每月彙整:六月 2013

morison

00-65-c0-a8-64-70 morsion 192.168.100.101 尾莊ip

發表於 未分類 | 發表迴響

完美解决OFFICE2003与OFFICE2007共存

完美解决OFFICE2003与OFFICE2007共存(WORD2003与WORD2007共存)问题(转截) 在已有Word2003的机器上安装了Word2007后,再打开Word2003,会出现一个安装界面。解决方法如下: 复制粘贴以下内容到“运行”对话框(点击“开始”,“运行”): reg add HKCU\Software\Microsoft\Office\11.0\Word\Options /v NoReReg /t REG_DWORD /d 1 再点击“确定”。 如果是先安装Word2007,再安装2003,则启动2007时会出现安装情况,那么就输入以下内容(同样可以复制粘贴): reg add HKCU\Software\Microsoft\Office\12.0\Word\Options /v NoReReg /t REG_DWORD /d 1 以上方法是一个名叫David Overton的外国人在他的Blog中给出的,网址:http://uksbsguy.com/blogs/doverton/archive/2007/07/21/how-to-get-rid-of-the-installer-configuration-dialog-when-running-office-2007-and-office-2003-on-the-same-system-for-vista-and-other-versions-of-windows.aspx。

發表於 未分類 | 發表迴響

對多台Server下達相同的指令

#!/bin/sh WEBs="1 2 3 4 5″ if [ $# -lt 1 ]; then echo ‘Err:no Param’ exit; fi for i in ${WEBs}; do echo -n "${i}… " /usr/bin/ssh user@xx.xx.xx.${i} $1 done echo "DONE!!"

發表於 未分類 | 發表迴響