windows 10输入法异常

Bui DENUMI 0 信誉分
2025-10-27T11:46:49.0466667+00:00

系统:win10 64位专业版 21H2

情况:

日语(日本)、中文(中国)、中文(中国香港)语言等所有自带与第三方输入法显示(仅桌面),右下角输入法无显示;桌面语言栏无显示,且输入英语比之前有卡顿,切换语言与切换输入法无效

历史操作:QQ五笔2.4覆盖安装更新QQ五笔2.2卡住,当时用任务管理器结束进程,QQ五笔设置无法打开,重启后呈现以上情况

历史解决:

1、win+R 运行ctfmon.exe后重启无效

2、打开windows powershell(管理员),输入sfc /SCANNOW扫描修复重启无效

3、运行services.msc,将touch keyboard and handwriting panelservice属性改手动重启无效

Windows 家庭版 | Windows 10 | 输入和语言
0 个注释 无注释
{count} 票

1 个答案

排序依据: 非常有帮助
  1. Francisco Montilla 18,005 信誉分 独立顾问
    2025-10-27T12:45:13.2766667+00:00

    Hello,

    Your symptoms point to a broken Text Services Framework in your user profile, very typical after an IME install hangs. Try to rebuild your language list so Windows recreates all IME registrations for your account, then make sure the TabletInputService is automatic.

    Do this end to end. First uninstall QQ Wubi completely in Settings > Apps > Installed apps, then restart the PC. Next open Windows PowerShell as Administrator and run exactly these commands to rebuild the list. You can add QQ Wubi back later once everything works.

    $list = New-WinUserLanguageList "en-US"
    $list.Add("zh-CN")
    $list.Add("zh-HK")
    $list.Add("ja-JP")
    Set-WinUserLanguageList $list -Force
    

    Now ensure the IME service is always available and running:

    sc config TabletInputService start= auto
    net start TabletInputService
    Start-Process "C:\Windows\System32\ctfmon.exe"
    

    Sign out and sign back in. The language indicator should be back in the taskbar and switching should work without lag on the desktop. If it does, test typing in Notepad and a browser, then add QQ Wubi again if you still need it.

    If anything is still missing after these steps, tell me and I will move you to the next repair step.


你的答案

问题作者可以将答案标记为“接受的答案”,这有助于用户了解已解决作者问题的答案。