GPO tool

Group Policy made searchable

A free ADMX browser or comparison tool for IT administrators. Search policies, find registry keys, and see exactly what each setting writes to the Windows Registry. Or compare two GPO backups to see exactly what has changed between them.

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

VendorMicrosoft
ProductTextInput policies
CategoryText Input
Applies toComputer Configuration
Supported onWindows 10 0 RS4
Registry Key[HKLM]SoftwareMicrosoftWindowsCurrentVersionPoliciesTextInput
Value NameAllowLinguisticDataCollection
TypeREG_DWORD
Enabled value1
Disabled value0

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:00000000

PowerShell

# 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