/
/

How to Enable or Disable Shell Handwriting feature in Windows 11

by Jarod Habana, IT Technical Writer
How to Enable or Disable Shell Handwriting feature in Windows 11 blog banner image

Instant Summary

This NinjaOne blog post offers a comprehensive basic CMD commands list and deep dive into Windows commands with over 70 essential cmd commands for both beginners and advanced users. It explains practical command prompt commands for file management, directory navigation, network troubleshooting, disk operations, and automation with real examples to improve productivity. Whether you’re learning foundational cmd commands or mastering advanced Windows CLI tools, this guide helps you use the Command Prompt more effectively.

Key Points

  • Settings app: Toggle Shell Handwriting in Windows 11 via Settings > Pen & Windows Ink for quick, user-friendly control.
  • Registry Editor: Change EnableInkingWithTouch in the registry for advanced configuration and admin-level control.
  • .reg file: Use .reg files to quickly enable or disable Windows handwriting input across multiple devices.
  • PowerShell: Run scripts to automate Windows Ink handwriting-to-text settings for remote and enterprise management.

Shell Handwriting enhances input flexibility by letting users with touch-enabled and pen-supported devices write directly into text fields. This functionality appears as “Use your handwriting to enter text” in the Settings app and offers a more natural and accessible method of managing handwriting-to-text in Windows 11.

If you want to enable or disable this Windows Ink writing to text feature, keep reading for step-by-step instructions using the Settings app, Registry Editor, PowerShell, and .reg files.

How to enable or disable shell handwriting feature in Windows 11

Windows 11 offers various methods to control Shell Handwriting alongside Windows Ink to text. It allows users to tailor input capabilities to specific device needs and organizational policies.

📌 Prerequisites:

  • Windows 11 version 23H2 and later
  • Shell Handwriting supported device: Available starting with Build 23481 (Dev), 22631.2050 (Beta), and 25926 (Canary)
  • Touch and pen input support for the feature to function
  • Local user access with standard user permissions

💡 Tip: Check Things to look out for before proceeding.

📌 Recommended deployment strategies:

Click to Choose a Method

💻

Best for Individual Users

💻💻💻

Best for Enterprises

Method 1: Enable or disable via the Settings app
Method 2: Enable or disable via Registry Editor
Method 3: Enable or disable via a .reg file
Method 4: Enable or disable via PowerShell scripts

Method 1: Enable or disable via the Settings app

This method is the most user-friendly way to toggle the Shell Handwriting feature alongside the Windows Ink writing-to-text functionality. It doesn’t require scripting skills, registry editing knowledge, or elevated user permissions.

📌 Use Cases: One-off configuration for personal or test devices, and quick toggling during troubleshooting or demonstrations

  1. Open the Settings app. Press Windows + I or manually find it using the Start menu search bar.
  2. On the left pane, select Bluetooth & devices.
  3. On the right pane, choose Pen & Windows Ink.
  4. Under Handwriting, expand Handwriting panel settings and select the checkbox beside Write with your fingertip.
  5. Under Shell Handwriting, expand Use your handwriting to enter text and set the toggle to:
    • On = Enables handwriting input into text fields
    • Off = Disables handwriting input into text fields
  6. For the changes to take full effect, restart your PC.

💡 Note: The Shell Handwriting section will only appear if the feature is supported on the device.

Method 2: Enable or disable via Registry Editor

This method directly modifies the keys associated with the Windows Ink handwriting-to-text feature in the registry.

📌 Use Cases: Configuring domain-joined machines and changing the settings in environments without GUI access

⚠️ Warning: Incorrectly modifying the registry can lead to severe system issues. Back up the registry before proceeding.

  1. Open the Registry Editor. Press Windows key + R, type “regedit,” and press Enter.
  2. On the left pane, follow this path: HKEY_CURRENT_USER\Software\Microsoft\TabletTip\EmbeddedInkControl
  3. On the right pane of the EmbeddedInkControl key, double-click the EnableInkingWithTouch DWORD.
    ⚠️ Note: If EnableInkingWithTouch doesn’t exist, create it. Right-click the EmbeddedInkControl key, hover over New, select DWORD (32-bit) Value, and name it “EnableInkingWithTouch.”
  4. In the pop-up dialog box, change the Value data to:
    • 1 = Enables handwriting to enter text
    • 0 = Disables handwriting to enter text
  5. Click OK.
  6. Restart your computer to apply the changes.

Method 3: Enable or disable via a .reg file

This method uses a .reg file to automate the Registry Editor changes.

📌 Use Cases: Embedding into onboarding or configuration tools, and quick deployment across devices

  1. Open Notepad and copy one of the following codes:
    1. To enable handwriting input (Save and name it enable_handwriting.reg):
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\TabletTip\EmbeddedInkControl]

“EnableInkingWithTouch”=dword:00000001

1. To disable handwriting input (Save and name it disable_handwriting.reg):

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\TabletTip\EmbeddedInkControl]

“EnableInkingWithTouch”=dword:00000000

2. Locate and double-click the .reg file to merge it with the registry.

3. Confirm the User Access Control (UAC) prompt.

4. To apply the changes, reboot the system.

Method 4: Enable or disable via PowerShell scripts

While there is no direct PowerShell cmdlet for Shell Handwriting, this method uses PowerShell scripts to automate the Windows Registry changes for the currently logged-in user.

📌 Use Cases: Incorporating into configuration management platforms (like Intune, SCCM, GPO scripts), and toggling the setting in remote management scenarios

    1. Open PowerShell. Press Windows key + R, type “powershell,” and press Enter.
    2. Copy and paste the command for the action you want to take before you press Enter:
      • To enable handwriting input:
        Set-ItemProperty -Path “HKCU:\Software\Microsoft\TabletTip\EmbeddedInkControl” -Name “EnableInkingWithTouch” -Value 1 -Type DWord
      • To disable handwriting input:
        Set-ItemProperty -Path “HKCU:\Software\Microsoft\TabletTip\EmbeddedInkControl” -Name “EnableInkingWithTouch” -Value 0 -Type DWord
    3. For the changes to take full effect, restart your PC.

⚠️ Things to look out for

Risks

Potential Consequences

Reversals

Incorrect registry modifications (for example, wrong path, key, or value)
  • The feature may not behave as expected
  • System instability
  • Manually check for errors using the Registry Editor and delete or correct errors.
  • Always create a restore point using the System Restore utility or export the appropriate key before making changes.
Conflict with third-party ink or accessibility tools
  • Unpredictable performance
  • Application crashes
  • Reduced system usability
  • Temporarily disable third-party tools to isolate the issue.
  • Revert to the previous configuration.

Why turn Shell Handwriting on or off?

The Shell Handwriting functionality enhances touch input versatility on touch-capable devices. It allows users to handwrite directly into text fields using a digital pen or stylus instead of a separate input box. However, this feature, which converts handwriting to text in Windows 11, may not be as useful in some environments, so some administrators and power users disable it.

Enabling Shell Handwriting can:

  • Improve accessibility for various users, making digital interaction more inclusive
  • Help users with mobile workflows, where traditional keyboards are less convenient and handwriting can speed up and simplify data entry
  • Introduce a more natural input method for note-taking, signing forms, or completing digital documentation

Disabling Shell Handwriting can:

  • Eliminate security concerns by minimizing the use of non-standard input methods
  • Ensure a consistent and uniform desktop environment across devices within enterprises
  • Prevent unnecessary system resource usage and remove UI elements that may confuse users
  • Prevent accidental data entry using a finger or stylus on shared or public touchscreen devices

Additional considerations when enabling or disabling handwriting input

Before implementing or deploying this configuration, one must understand how this setting behaves across various environments, including its broader impact on system management and user experience.

User-specific setting

Because the Shell Handwriting setting is stored under the HKEY_CURRENT_USER registry hive, changes will only apply to the currently logged-in user.

Enterprise deployment and automation

There is no dedicated Group Policy setting for this setting. If you need to apply the setting for all users, consider using Method 3 or Method 4 to deploy it via deployment platforms (e.g., Microsoft Intune, System Center Configuration Manager (SCCM), or Windows Autopilot)

Interaction with other input settings

Shell Handwriting may interact with tablet mode behavior, Ink Workspace, and other third-party tools that modify Windows Ink functionality. Make sure to assess compatibility with various software before deploying feature changes.

Optimizing Shell Handwriting for your environment

Shell handwriting enhances the Windows Ink handwriting-to-text feature by fine-tuning the user experience across touch and pen-enabled devices. There are several methods to turn it on or off, so IT administrators and power users can align the settings with their goals or organizational requirements. With the right considerations, tech professionals can ensure consistent and secure configurations across device fleets.

Related topics:

FAQs

Shell Handwriting is a Windows 11 feature that lets users write directly into text fields using a stylus or touch, converting handwriting to text via Windows Ink.

You can enable or disable handwriting input through Settings > Pen & Windows Ink, or by using the Registry Editor, .reg files, or PowerShell scripts.

This option only appears on supported devices with touch or pen input and requires compatible Windows 11 builds (23H2 or later).

There’s no direct Group Policy, but you can deploy changes using .reg files or PowerShell scripts through tools like Intune or SCCM for enterprise environments.

It’s a per-user setting, stored under the HKEY_CURRENT_USER registry hive, so changes apply only to the logged-in user.

Disabling it can improve security, reduce accidental input on touchscreens, and maintain a consistent user experience in shared or enterprise environments.

You might also like

Ready to simplify the hardest parts of IT?