/
/

How to Show or Hide the Touch Keyboard Icon on the Taskbar in Windows 11

by Jarod Habana, IT Technical Writer
How to Show or Hide the Touch Keyboard Icon on the Taskbar 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

  • The touch keyboard icon in Windows 11 can be shown or hidden through taskbar settings.
  • Registry configuration using TipbandDesiredVisibility controls touch keyboard icon visibility per user or device.
  • PowerShell can automate touch keyboard icon settings by creating or updating registry values.
  • Touch keyboard icon behavior changes based on physical keyboard detection and device mode.
  • The touch keyboard and the On-Screen Keyboard are separate features in Windows 11.

The Microsoft touch keyboard, or the digital keyboard for touch-enabled devices, can usually be accessed conveniently through the touch keyboard icon on the Windows 11 taskbar. This icon, while convenient for many users and administrators, can also be undesirable in specific environments, so Windows allows users to hide or show it according to their needs. Keep reading to learn how to do just that through various methods.

How to turn on or off the touch keyboard icon in the Windows 11 taskbar

There are a few methods to control whether the touch keyboard icon appears on the taskbar, but the most suitable method depends on the specific working environment.

📌 Prerequisites:

  • Windows 11 device
  • Administrative access for registry changes
  • Touch-capable hardware (if enabling the keyboard for tablet workflows)
  • Ability to restart Explorer or sign in again after configuration

Method 1: Show or hide the icon through taskbar settings

Adjusting the taskbar settings is the most direct way to control whether the icon appears. This is ideal for individuals using personal devices or who only need a quick adjustment for troubleshooting.

  1. Right-click the taskbar and select Taskbar settings.
  2. Under System tray icons, find the Touch keyboard option, and do either of the following:
    • For older Windows 11 builds: Click the toggle to:
      • On = Show the icon on the taskbar
      • Off = Hide the icon on the taskbar
    • For Windows 11 build 22572 and later: Click the dropdown menu and select:
      • Never = Always hide the icon on the taskbar
      • Always = Always show the icon on the taskbar
      • When no keyboard attached = Only show the icon on the taskbar when no physical keyboard is attached
  3. Validate the behavior of the icon.

Method 2: Show or hide the icon using the Registry Editor

The Registry Editor gives administrators more control over icon behavior for specific users. This is very useful in kiosk, shared, or standardized desktop environments.

  1. Open the Registry Editor as administrator. Press Windows key + R, type “regedit,” and press Ctrl + Shift + Enter.
  2. On the left pane, follow this path:

HKEY_CURRENT_USER\Software\Microsoft\TabletTip\1.7

  1. On the right pane of the 1.7 key, double-click the TipbandDesiredVisibility DWORD.

💡Note: If TipbandDesiredVisibility doesn’t exist, create it. Right-click the 1.7 key, hover over New, select DWORD (32-bit) Value, and name it “TipbandDesiredVisibility.”

  1. In the pop-up dialog box, change the Value data to:
    • 0 = Never show the icon on the taskbar
    • 1 = Always show the icon on the taskbar
    • 2 = Only show the icon when no physical keyboard is attached
  2. Click OK.
  3. To apply the changes, restart the computer or log off and log back in.
  4. Validate the behavior of the icon.

Method 3: Show or hide the icon using PowerShell

You can also use PowerShell for a more scalable and automation-friendly way to manage the visibility of the icon across multiple devices. This method is more suited for administrators who use scripts, RMM tools, or deployment workflows to enforce consistent task behavior.

  1. Open PowerShell as administrator. Press Windows key + R, type “powershell,” and press Ctrl + Shift + Enter.
  2. Copy and paste the appropriate command for the action you want to take before pressing Enter:
Set the icon toCommand
Never appear (Current user)New-Item -Path "HKCU:\Software\Microsoft\TabletTip\1.7" -Force | Out-Null

New-ItemProperty -Path "HKCU:\Software\Microsoft\TabletTip\1.7" -Name "TipbandDesiredVisibility" -PropertyType DWord -Value 0 -Force

Always appear (Current user)New-Item -Path "HKCU:\Software\Microsoft\TabletTip\1.7" -Force | Out-Null

New-ItemProperty -Path "HKCU:\Software\Microsoft\TabletTip\1.7" -Name "TipbandDesiredVisibility" -PropertyType DWord -Value 1 -Force

Only show when no physical keyboard is attached (Current user)New-Item -Path "HKCU:\Software\Microsoft\TabletTip\1.7" -Force | Out-Null

New-ItemProperty -Path "HKCU:\Software\Microsoft\TabletTip\1.7" -Name "TipbandDesiredVisibility" -PropertyType DWord -Value 2 -Force

  1. To apply the changes, restart your computer or log off and log back in.
  2. Validate the behavior of the icon.

Validate touch keyboard behavior based on hardware

After configuring these settings, validate the behavior by testing your device’s hardware detection. Since the icon responds dynamically to physical state change, like detaching a keyboard or folding a 2-in-1, verifying these transitions ensures the software configuration is correctly interpreting your hardware signals.

  1. Detach a physical keyboard or fold back a 2-in-1 device into tablet mode.
  2. Confirm that the touch keyboard icon appears automatically if configured to do so.
  3. Tap into a text field to verify the touch keyboard launches when expected.
  4. Reattach the keyboard or return the device to laptop mode.
  5. Verify that the icon hides or remains hidden according to the selected setting or enforced policy.
  6. Manually open the touch keyboard to confirm it functions correctly for text input.

Why show or hide the touch keyboard icon on the taskbar

Showing or hiding the touch keyboard icon on the Windows 11 taskbar lets users tailor the device interface to their working style. Especially in managed and mixed-device environments, this setting is usually adjusted to ensure both accessibility and usability.

Reasons to show the icon:

  • Support touch, tablet, and hybrid device workflows.
  • Provide on-screen input when there is no physical keyboard.
  • Maintain accessibility for users who rely on touch or assistive input.

Reasons to hide the icon:

  • Simplify the taskbar on desktop-only or keyboard-based systems.
  • Prevent confusion where touch input is not supported or required.
  • Enforce standardized desktop configurations across devices.

Additional considerations

When managing the touch keyboard icon in the Windows 11 taskbar, several factors can influence how and when the icon appears. Understanding them should help you avoid unexpected results.

  • The icon responds dynamically to hardware states, so on hybrid or convertible devices, factors like hinge position or the absence of a physical keyboard will trigger its visibility.
  • Some OEM images apply custom defaults through provisioning packages or vendor utilities, which can override standard taskbar behavior.
  • The touch keyboard and the On-Screen Keyboard are separate features with different purposes and controls.
  • Hiding the touch keyboard icon does not disable the On-Screen Keyboard, which remains available through Accessibility settings.
  • Windows 11 currently lacks a dedicated Group Policy Object (GPO) to directly manage the touch keyboard icon’s presence on the taskbar.

Troubleshooting

If the touch keyboard icon does not behave as expected after configuration, the following checks might help identify and resolve common issues.

Touch keyboard icon is missing

Verify that the icon is enabled in taskbar settings or that the TipbandDesiredVisibility registry value is set correctly for the intended user or device scope.

Touch keyboard does not appear when tapping into text fields

Confirm that the icon is set to Always or When no keyboard attached and that the device supports touch input.

Setting reverts after restart or sign-in

Check for startup scripts, device management tools, or OEM provisioning packages that may be reapplying default taskbar configurations.

On-Screen Keyboard appears instead of the touch keyboard

Ensure you are not launching the Accessibility On-Screen Keyboard, a separate feature that does not rely on the taskbar icon.

Icon remains visible on desktop-only systems

Verify that the registry setting is not set to Always, and review vendor utilities that may be enforcing taskbar visibility.

NinjaOne integration

NinjaOne can help admins manage touch keyboard icon visibility at scale by automating configuration and ensuring consistency across environments. Some administrative actions include:

  • Deploy registry-based configurations using automated scripts and policy management.
  • Apply user-level or device-wide settings during onboarding and provisioning.
  • Enforce standardized taskbar behavior for kiosks, shared systems, or hybrid devices.
  • Detect and remediate configuration drift through scheduled checks.
  • Validate device configuration status following hardware or usage changes.

Ensuring consistent touch keyboard icon behavior

Managing the touch keyboard icon in Windows 11 helps users and administrators align the taskbar experience with their specific needs. Several methods are available, so you have various options, no matter the environment. Just make sure to understand the many factors that can influence the touch keyboard icon management process to successfully set configurations without introducing unnecessary interface elements.

Related topics:

FAQs

The touch keyboard is designed primarily for touch, tablet, and hybrid devices, and integrates with the taskbar icon and hardware detection. The On-Screen Keyboard is an accessibility tool that opens in a separate window and remains available regardless of taskbar settings or device mode.

No, hiding the icon only removes the shortcut from the taskbar. The touch keyboard can still appear automatically on supported devices or be launched when required by the system.

Yes, on many touch-first or convertible devices, Windows 11 automatically displays the icon when a physical keyboard is not detected. This behavior depends on both hardware signals and the configured visibility setting.

This can happen if a physical keyboard is detected, the device does not support touch input, or the icon is set to Never via registry configuration. OEM utilities or provisioning settings can also override user preferences.

Not always. In full-screen mode, the taskbar may auto-hide, which also hides the icon until the taskbar is revealed. This behavior is controlled by taskbar and application display settings, not the keyboard itself.

You might also like

Ready to simplify the hardest parts of IT?