Windows/PowerShell.md
... ...
@@ -253,6 +253,16 @@ finally {
253 253
}
254 254
```
255 255
256
+# IME再起動
257
+- 日本語入力が効かなくなった場合、IMEの再起動を試してみる。
258
+- 要管理者権限。PowerShell は `管理者として実行` で起動すること。
259
+- `ctfmon.exe` のプロセス ID が変わっていれば再起動されている。
260
+```powershell
261
+Get-Process ctfmon
262
+Get-Process ctfmon | ForEach-Object { Stop-Process -Id $_.id }
263
+Get-Process ctfmon
264
+```
265
+
256 266
# PowerShell Core のインストール
257 267
- [PowerShell のさまざまなバージョンのインストール](https://docs.microsoft.com/ja-jp/powershell/scripting/install/installing-powershell)
258 268
- [Windows への PowerShell Core のインストール](https://docs.microsoft.com/ja-jp/powershell/scripting/install/installing-powershell-core-on-windows)