Shortcut to Open On-Screen Keyboard in Windows 10: Quick Access Guide

Learn practical shortcuts and commands to open the On-Screen Keyboard in Windows 10 quickly. This guide covers Run dialog, PowerShell, CMD, and settings paths with code examples and best practices by Shortcuts Lib for power users and accessibility.

Shortcuts Lib
Shortcuts Lib Team
ยท5 min read

Quick-start methods to open the On-Screen Keyboard in Windows 10

There are several reliable paths to bring up the On-Screen Keyboard (OSK) quickly depending on your workflow. The most direct method is using the Run dialog: Win+R to open Run, then type osk and press Enter. If you prefer PowerShell, you can start OSK with a single command. If you routinely navigate via Settings, you can jump to the keyboard accessibility page with a short command. The following examples illustrate practical, working approaches.

PowerShell
# Open the On-Screen Keyboard from PowerShell Start-Process "osk.exe"
CMD
REM Open On-Screen Keyboard from Command Prompt start osk
PowerShell
# Open Keyboard settings via Settings app (Windows 10) Start-Process "ms-settings:easeofaccess_keyboard"

Each method has its place: Run dialog for speed, PowerShell for automation, and Settings when you want to adjust keyboard options before using OSK.

Related Articles