How to disable Microsoft Text Input Application
If MicrosoftTextInputApplication's process is called "TextInputHost.exe" paste this into
CMD:
If it is called "InputApp.exe"
To undone changes:
If MicrosoftTextInputApplication's process is called "TextInputHost.exe" paste this into
CMD:
Kod:
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\TextInputHost.exe" /v Debugger /d "%SystemRoot%\system32\systray.exe" /f
taskkill /im "TextInputHost.exe" /t /f
echo done
If it is called "InputApp.exe"
Kod:
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\WindowsInternal.ComposableShell.Experiences.TextInput.InputApp.exe" /v Debugger /d "%SystemRoot%\system32\systray.exe" /f
taskkill /im "WindowsInternal.ComposableShell.Experiences.TextInput.InputApp.exe" /t /f
echo done
To undone changes:
Kod:
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\WindowsInternal.ComposableShell.Experiences.TextInput.InputApp.exe" /v Debugger /f
echo done