2022/5/2

英文版 Windows 10切換到注音輸入法出現“Traditional Chinese IME is not ready yet”

 

英文版 Windows 10切換到注音輸入法出現“Traditional Chinese IME is not ready yet” 

安裝名為 Microsoft YaHei Mono 字型檔

 https://github.com/Microsoft/vscode/files/555425/yahei_mono.zip

https://blog.miniasp.com/post/2017/12/06/Microsoft-YaHei-Mono-Chinese-Font-for-Command-Prompt-and-WSL

已經安裝繁體中文Language Pack,但切換到注音輸入法出現“Traditional Chinese IME is not ready yet”


https://answers.microsoft.com/en-us/windows/forum/windows_10-other_settings/problems-using-a-japanese-or-traditional-chinese/db5a0ddf-2c50-4f0d-a961-58902f40acda

  • For Traditional Chinese basic typing:
DISM.exe /Online /Add-Capability /CapabilityName:Language.Basic~~~zh-TW~0.0.1.0


如果只需要在 英文版Windows安裝注音輸入法可以參考http://it.rex.tw/2020/07/windows.html

ref:
http://www.infomate.tw/2020/01/windows10-traditional-chinese-ime-is.html

https://blog.dino9021.com/2017/02/windows-10.html
Add-WindowsCapability -Name "Language.Basic~~~zh-TW~0.0.1.0" -Online
Add-WindowsCapability -Name "Language.Handwriting~~~zh-TW~0.0.1.0" -Online
Add-WindowsCapability -Name "Language.OCR~~~zh-TW~0.0.1.0" -Online
Add-WindowsCapability -Name "Language.Speech~~~zh-TW~0.0.1.0" -Online
Add-WindowsCapability -Name "Language.TextToSpeech~~~zh-TW~0.0.1.0" -Online
Add-WindowsCapability -Name "Language.Fonts.Hant~~~und-HANT~0.0.1.0" -Online
Add-WindowsCapability -Name "International.Locale.Taiwan~~~zh-TW~0.0.1.0" -Online

2020/1/13

Install ELK Docker on Windows





 [Docker]
1. Joining Docker
https://hub.docker.com

2. Download Docker
https://download.docker.com/win/stable/Docker%20Desktop%20Installer.exe

[Install]
Windows Command
docker pull sebp/elk

[Start ELK]
A. 
Windows Command:
docker run -p 5601:5601 -p 9200:9200 -p 5044:5044 -it --name elk sebp/elk

B.
  1. Create File using Notepad : docker-compose.yml
===File Start======================================
elk:
  image: sebp/elk
  ports:
    - "5601:5601"
    - "9200:9200"
    - "5044:5044"
===File End======================================
   2. Windows Command
docker-compose up elk















Refence
https://elk-docker.readthedocs.io/

2019/11/30

Unable to bring the File Server resource online in a windows failover cluster - 0x3eb cluster resource ( 無法在Windows叢集中建立 檔案伺服器,0x3eb 錯誤)





























A catchy question on an interview

Interviewer: If you have accepted the job and have been in the job for three months, but you find that you have chosen the wrong one and it is not suitable, what can you do?



Most of these issues will be discussed before. For example, the past work has been long or short, easy and difficult. The interviewer will make similar premise.





The best answer should be that any job that you choose to join will go all out. When you encounter a problem, you will give priority to solving the problem. You never thought of giving up directly. The past experience is the same. The reason why the past left It has been determined that the greatest strength is to solve the problem and exhaust all kinds of resources and methods. Once the problem spreads to the direction that affects career planning, it will return to amending the career direction. In past experience, we have not thought about giving up.

面試時的陷阱題

面試官:假如你接受了這份工作之後,並且到職三個月了,卻發現自己選錯了,不適合,那請問你怎麼辦?


多半這樣的問題,前面還會鋪陳,例如過去的工作有長有短,有輕鬆也有困難,面試官會撲類似這樣的前提。




最好的回答應該是,任何一份工作,選擇加入以後都是全力以赴,遇到難題會以解決難題為優先處理,並未想過直接放棄,過去的經驗也是一樣,過去之所以會離開,已經確定在解決問題上進最大的力量,用盡各種資源與方法,一旦問題擴散到影響職涯規劃方向,就會回歸到修正職涯方向去進行,過去的經驗中還沒有想過放棄。

2015/12/14

Outlook 安全模式

狀況:
使用者反映,Outlook 開啟後進入安全模式,無論如何重新啟動Outlook,或是重新啟動Windows 再進入 Outlook  ,Outlook 一律進入安全模式。
環境:Windows 8 + Office Standard 2010

原因:微軟更新【 KB3114409 】,造成Outlook 2010 只能以安全模式啟動。


解決方式:於新增移除中,將該更新移除後,重新啟動電腦,再進入Outlook 即可正常。
  

參考資料:
KB3114409

2015/11/5

產生垃圾檔案、空白檔案。

1.使用工具:Garfiled
   下載點

2.使用指令:fsutil
  Windows 內建指令
建立指定大小的空白檔案。
fsutil file createnew [檔名] [大小]
檔名:可位於相對路徑,或指定絕對路徑,含UNC路徑,可用中文。
大小:數字,計算單位bytes。

範例
 fsutil file createnew \\NTServer\Files\123.Zip 1048576

路徑:\\NTServer\Files\
檔名:123.ZIP
大小:1048576 bytes。

參考資料:Fsutil file