2014年4月29日 星期二

IP-based AUTD failed to initialize

Reference:
http://support.microsoft.com/kb/956189

狀況:
IP-based AUTD failed to initialize because the processing of notifications could not be setup.  Error code [0x80004005].

解法:
1. 執行 regedit
2. 到 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
3. 編輯 ReservedPorts
4. 加入 2883-2883
5. restart service "DNS Server"

Exchange 2003 web service fail

Reference:
The worker process for Exchange ActiveSync crashes when end-users try to synchronize their third-party devices with an Exchange Server 2003 server

狀況:
Exchange Web service 持續出現錯誤。錯誤訊息為 A process serving application pool 'ExchangeApplicationPool' suffered a fatal communication error with the World Wide Web Publishing Service. The process id was '3544'. The data field contains the error number.

解法:
1. download Microsoft hotfix
2. stop "World Wide Web Publishing Service"
3. install hotfix
4. start "World Wide Web Publishing Service"

2014/04/27 新豐紅毛港休憩區

釣螃蟹。釣完就放牠們回家了。


2014/04/27 新竹 綠鏡景觀餐廳

份量有點少....


User Profile Service 登入失敗

Reference:
您收到「User Profile Service 登入失敗」錯誤訊息

狀況:
帳號 x 登入後出現 "Windows 找不到本機設定檔,將讓您以暫存設定檔登入。當您登出後,在這個設定檔建立的變更將會遺失。"

解法:
1. 用另一個 administrator 帳號登入
2. 刪除 C:\Users\x
3. 執行 regedit
4. 到 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList
5. 找 S-1-5-21-xxxxxxx 裡面的 ProfoleImagePath = C:\Users\x
6. 找到後刪除那一個 S-1-5-21-xxxxxxx
7. 登出 administrator,用帳號 x 登入


2014年4月25日 星期五

Acer notebook Windows 7 & Windows 8

在 PChome 買了 Acer TravelMate P243-M,網頁上說是 Windows 8,但是開機卻是 Windows 7。

PChome客服說要問 Acer 客服,但是 Acer 客服卻沒人接...

幸好有認識 Acer 資深 Sales 問到答案了。

因為現在 Windows 8 剛推出,有些人要用 Windows 7 有些人要用 Windows 8,所以 Acer 在 Recovery Manager 裡面兩個 OS image 都放。

預設開機會自動設定成 Windows 7。
如果要用 Windows 8 步驟為:
1. 開機讓 Windows 7 第一次設定完成
2. 重開機,在 BIOS 階段按 Alt + F10 進入 Recovery Manager
3. 選擇復原為 Windows 8

2014年4月23日 星期三

PDFCreator 列印空白頁之解決辦法

Reference:
關於 PDFCreator (v1.7.1) 列印空白頁之解決辦法

開啟 PDFCreator 程式

點選功能選單 "印表機" -> "選項

"動作" -> "儲存前動作" -> 勾選checkbox "儲存前動作" -> 在 "程式/指令碼" 下拉選單中,選取 "AddBookmarks.vbs" -> 按右下角 "儲存(S)" 按鈕。

有效。

How to detect when an UPDATE fails when using ADODB.Command Execute

Reference:
How to detect when an UPDATE fails when using ADODB.Command Execute

Dim update_cmd As New ADODB.Command
lRecordsAffected = 0
update_cmd.ActiveConnection = CurrentProject.Connection
update_cmd.CommandType = adCmdText
update_cmd.CommandText = "your SQL Update command"
Set adoRS = update_cmd.Execute(lRecordsAffected)

If (lRecordsAffected = 0) Then
    MsgBox "update fail"
ElseIf (lRecordsAffected > 0) Then
    MsgBox "update complete"
End If

註:
Set adoRS = update_cmd.Execute(lRecordsAffected) 這一行一定要有 Set adoRS。
如果只寫 update_cmd.Execute(lRecordsAffected),不會把更新筆數記錄到 lRecordsAffected。

2014年4月22日 星期二

2014/04/20 桃園半日遊

桑葚緣觀光果園

6028 咖啡館

2014/04/19 新竹市 火燒牛碳烤原肉牛排

火燒牛碳烤原肉牛排 新竹總店
新竹市鐵道路二段112號 訂位專線:03-532-1113
營業時間 AM11:00~14:00 PM17:00~22:00

好吃。
附近不太好停車。
16 oz 莎朗牛排,超大的!(套餐 380 元)

2014年4月8日 星期二

Base64 Decode Encode

Base64 Decode Encode Using Notepad++
優點:可以解出 UTF-8, Unicode
缺點:解 Base64 不能包含其他的部分

CodeView是一個支援MIME/BASE64、Quoted-Printable、HZ和UUCode等格式的編碼與解碼,並且能夠進行BIG5碼與GB碼相轉的免費軟體。
優點:可以自動拆解 MIME multipart
缺點:不支援 UTF-8, Unicode