Select a product
- Select a category.
Improve inking and typing recognition
This policy setting controls the ability to send inking and typing data to Microsoft to improve the language recognition and suggestion capabilities of apps and services running on Windows.
Registry Information
| Vendor | Microsoft |
|---|---|
| Product | TextInput policies |
| Category | Text Input |
| Applies to | Computer Configuration |
| Supported on | Windows 10 0 RS4 |
| Registry Key | [HKLM]SoftwareMicrosoftWindowsCurrentVersionPoliciesTextInput |
| Value Name | AllowLinguisticDataCollection |
| Type | REG_DWORD |
| Enabled value | 1 |
| Disabled value | 0 |
Registry File (.reg)
Windows Registry Editor Version 5.00
; Enable the policy
[HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionPoliciesTextInput]
"AllowLinguisticDataCollection"=dword:00000001
; Disable the policy
[HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionPoliciesTextInput]
"AllowLinguisticDataCollection"=dword:00000000PowerShell
# Enable the policy
Set-ItemProperty -Path "HKLM:SoftwareMicrosoftWindowsCurrentVersionPoliciesTextInput" -Name "AllowLinguisticDataCollection" -Value 1 -Type DWord
# Disable the policy
Set-ItemProperty -Path "HKLM:SoftwareMicrosoftWindowsCurrentVersionPoliciesTextInput" -Name "AllowLinguisticDataCollection" -Value 0 -Type DWord 