顯示具有 電腦系統 標籤的文章。 顯示所有文章
顯示具有 電腦系統 標籤的文章。 顯示所有文章

2013年8月7日 星期三

拒絕存取要求的工作階段問題

今天用Windows Server 2008建立一個rdp服務,一切運作都很正常,但在iphone上使用pocket cloud會發生「拒絕存取要求的工作階段」的問題,經過測試後發現是以一般使用者登入,但在傳輸過程中有控制指令的原因,只要將設定中的「控制模式」關閉即可正常運作。

2011年12月25日 星期日

解決HP C7280 0xc19a005錯誤的方法

今天印表機不斷出現錯誤,顯示墨水系統錯誤,所以上網找了一下解決方法,Here are the details. Got the Ink System Failure message. The error code shows was '0xc18a0005'. The tech had me press and hold the '*' key on the key pad, then press the '#' key and release them both. Then he had me enter '123' to enter maintenance mode. He then had me press the right arrow (beside the OK button) until System Config. menu appeared on panel. Then pressed OK two times to clear the error condition, then cancel two or three times to return to the top menu. Then powered off and back on, printed a test page just fine, copied a document fine.

2011年6月5日 星期日

如何徹底刪除列印工作

常常會因為印表機暫停或錯誤,因而在佇列中無法刪除,找到一個命令列指令,馬上就可解決此問題,將下列指令存成sp.bat即可
@echo off
Net Stop spooler
Del %systemroot%\system32\spool\printers\.
Net Start Spooler
@echo OK~列印佇列清除成功!!
@pause