2014年11月26日 星期三

Find The Last Row or Last Column Using VBA

Reference:

5 Different Ways to Find The Last Row or Last Column Using VBA


    '開啟 excel file
    Set myxlapp = CreateObject("excel.application")
    myxlapp.workbooks.Open my_excel
        With myxlapp.Sheets(1)
            excel_rows = .UsedRange.Rows.Count
            excel_columns = .UsedRange.Columns.Count
            MsgBox excel_rows & ", " & excel_columns
        End With

2014年11月18日 星期二

Lenovo x240 休眠後無法用鍵盤滑鼠喚醒

狀況:
Lenovo x240 休眠後無法用鍵盤滑鼠喚醒 (螢幕還是黑的),但是用遠端桌面可以連上。

解法:
將這三個 Windows update 解除,再立即檢查更新,將這三個更新設定為隱藏。

Linux CentOS 6.4 library error and solution

狀況:
安裝一個冷門的軟體 Q3D,它有自己的 library,執行時錯誤訊息為 symbol lookup error: /usr/lib/libXext.so.6: undefined symbol: _XGetRequest

這軟體安裝在 /opt,用 find /opt -name libXext.so.6 找到 /opt/AnsysEM/Q3DExtractor12.0/Linux/ansoftbin64/defer/libXext.so.6

試過用 setenv LD_LIBRARY_PATH /opt/AnsysEM/Q3DExtractor12.0/Linux/ansoftbin64/defer/libXext.so.6 沒效。

最後的解法:
mv /usr/lib/libXext.so.6 /usr/lib/libXext.so.6.bk
ln -s /opt/AnsysEM/Q3DExtractor12.0/Linux/ansoftbin64/defer/libXext.so.6 /usr/lib/libXext.so.6

Install Rar/Unrar centos 6

Reference:
http://whattheserver.me/billing/knowledgebase/34/Install-RarorUnrar-centos-6.html

for 64 bit
install unrar centos x64
#wget http://pkgs.repoforge.org/unrar/unrar-4.0.7-1.el6.rf.x86_64.rpm
#rpm -Uvh unrar-4.0.7-1.el6.rf.x86_64.rpm

install rar centos x64
#wget http://pkgs.repoforge.org/rar/rar-3.8.0-1.el6.rf.x86_64.rpm
#rpm -Uvh rar-3.8.0-1.el6.rf.x86_64.rpm

for 32 bit
install unrar centos 32
#wget http://pkgs.repoforge.org/unrar/unrar-4.0.7-1.el6.rf.i686.rpm
#rpm -Uvh unrar-4.0.7-1.el6.rf.i686.rpm
install rar centos 32
#wget http://pkgs.repoforge.org/rar/rar-3.8.0-1.el6.rf.i686.rpm
#rpm -Uvh rar-3.8.0-1.el6.rf.i686.rpm

you can also use matching OS rpm from
http://pkgs.repoforge.org/rpmforge-release/

2014年11月14日 星期五

vsphere data protection 5.1 安裝設定

請參考這一篇。
VMware vSphere Data Protection 5.1 安裝篇

1. 用 Deploy OVF Template 安裝
2. 設定 DNS 對應 vdp.domian.com 192.168.x.x
3. 連到 https://vdp.domain.com:8543/vdp-configure,預設帳號 root、密碼 changeme
4. 設定網路、時區、新密碼、vCenter
5. 將 VDP 重新開機
6. 登入 vSphere Web Client 才能設定 VDP 的相關備份機制
7. create backup job

2014年11月11日 星期二

SMTP Commands Reference

Reference: SMTP Commands Reference

HELO (Hello)The client sends this command to the SMTP server to identify itself and initiate the SMTP conversation. The domain name or IP address of the SMTP client is usually sent as an argument together with the command (e.g. “HELO client.example.com”). If a domain name is used as an argument with the HELO command, it must be a fully qualified domain name (also called FQDN). 

Exchange 2010 Inbound SMTP mail | 421 4.4.1 Connection timed out

狀況:
Exchange 2010無法收 mail,用 telnet mail.company.com 25 測試,敲完 helo 就出現 421 4.4.1 Connection timed out

解法:Exchange 2010 Inbound SMTP mail | 421 4.4.1 Connection timed out
1. restart service "MSExchangeTransport"
2. 將啟動模式改為 "Automatic (Delayed Start)"

2014年11月8日 星期六

Outlook and remove names from “ Global Address List “

Reference:
http://www.ozzu.com/mswindows-forum/outlook-and-remove-names-from-global-address-list-t74174.html

目的:將離職人員的e-mail從公用通訊路中移除。

1. 在 Active Directory and Computers 將要移除的帳號打開,選擇 Exchange Advanced,勾選 "Hide from Exchange address lists"


2014年11月6日 星期四

Symantec System Recovery 2013 Desktop Edition Error

錯誤訊息:
E4F3000E: Snapshot failure while using Volume Shadow Copy Service. Please check application event log for VSS errors. Error code: VSS_E_PROVIDER_VETO (-2,147,212,538). 0xE4F3000E (Symantec System Recovery)

按照 Symantec 這一篇做,還是卡在 磁碟快照 失敗。
http://www.symantec.com/business/support/index?page=content&id=TECH200584

SSR 2013 執行 磁碟快照 時,開啟 裝置管理員,發現有一個 磁碟裝置 沒有啟用。
把它啟用後磁碟快照就成功了。

-----------------------------------------------------------------------------------------------------------------------
2015/5/6 update
錯誤訊息:
EC8F03EA: Cannot create a virtual volume image of the selected drive.
E0BB00B5: 快照錯誤
EBAB03F1: 執行要求的作業時發生下列作業系統錯誤:「無法指出的錯誤.」。 0xE0BB00B5 (Symantec System Recovery)

用 Symantec 網站建議的方法還是發生錯誤。
最後把那個 partition 的資料先複製出來,把 patition format 後再將資料倒回去,就可以正常備份了。