Instant Access 2026.3
Instant Access is a powerful productivity add-on for NVDA that allows you to create your own custom shortcut layer. Instead of memorizing dozens of complex shortcuts, you can activate "Instant Access mode" with a single key, then press a simple gesture to launch applications, run mini-workflows, insert text, and much more.
This add-on goes beyond simple launchers by allowing you to chain multiple actions into a single, sequenced item, turning a single shortcut into a powerful macro.
NVDA+E: Toggle Instant Access mode on or off.NVDA+Shift+E: Announce the name of the currently focused application. This is useful for creating app-specific shortcuts.NVDA+Shift+E (pressed twice quickly): Copy the app name to the clipboard.Escape (while Instant Access mode is active): Deactivate the mode without running a command.You can configure the add-on from the NVDA settings panel:
NVDA+N).The main settings panel lists all your configured items, showing their name, type, shortcut, and a summary of their actions. From here, you can Add, Edit, Delete, and Test your items.
The add-on is built around two core concepts: Items and Actions.
When you add or edit an item, a dialog appears with the following options:
NVDA+Shift+E to find it).When you add or edit an action, you can choose from several types:
.exe). You can also provide optional Arguments.Ctrl+V paste.Here are a few examples to inspire you and show how to combine actions into powerful workflows.
This item opens your three favorite news websites in sequence, with a short pause between each one.
Morning NewsN1.5 (seconds)Website, Path: https://www.bbc.com/newsWebsite, Path: https://www.reuters.comWebsite, Path: https://www.apnews.comWhen you trigger this item (e.g., NVDA+E, then N), it will open the BBC News website, wait 1.5 seconds, open Reuters, wait another 1.5 seconds, and finally open AP News.
This item gets you ready to code by opening your project folder, your main code file in your editor, and your local development server in a browser.
Start Project XP3 (seconds, to give apps time to load)Folder, Path: C:\dev\project-xProgram, Path: C:\Users\YourName\AppData\Local\Programs\Microsoft VS Code\Code.exe, Arguments: C:\dev\project-x\src\main.jsWebsite, Path: http://localhost:3000This workflow gives you a fully prepared development environment with a single command.
This item is for quickly pasting a common response into an email or chat window. This example uses an app-specific shortcut for Microsoft Teams.
Teams GreetingGteamsText SnippetPasteHello team, I will be available to review this after 2 PM. Thanks!Now, when you are in Microsoft Teams, you can press NVDA+E` then `G to instantly paste that message into the chat. The same shortcut (G) can be used for a different global item or for an item in another app.
This item prepares your environment for testing websites and applications with accessibility tools.
A11y Testing KitA1.5 secondshttps://wave.webaim.orghttps://www.axe-core.orgC:\Users\YourName\Documents\A11yTestsResult:
Press NVDA+E then A to instantly open WAVE accessibility checker, axe DevTools documentation, and your testing notes folder in one action.
This item prepares your teaching environment by opening several tools used during an online class.
Start Teaching SessionT2 secondsC:\Users\Teacher\Documents\LessonNotesResult:
With one command you open the meeting platform, your interactive activity site, and your lesson materials.
This item types a phrase that you frequently use in communication.
Thank You MessageYResult:
Press NVDA+E then Y to instantly type the message in any text field.
This item opens several Windows system tools used for troubleshooting.
System ToolsU1 secondC:\Windows\System32\taskmgr.exeC:\Windows\System32\control.exeC:\Windows\System32\cmd.exeResult:
This quickly opens Task Manager, Control Panel, and Command Prompt.
This item prepares a distraction-free work environment.
Focus ModeF2 secondsC:\Program Files\Notepad++\notepad++.exeResult:
This opens your editor, starts a Pomodoro timer, and adjusts NVDA feedback for focused work.
This item opens your email account and productivity tools in sequence.
Email StationE1 secondhttps://mail.google.comhttps://calendar.google.comC:\Users\YourName\Documents\EmailTemplatesResult:
Press NVDA+E then E to open Gmail, Google Calendar, and your email templates folder.
This item verifies backup status and opens relevant backup tools.
Backup CheckK2 secondsC:\Users\YourName\AppData\Local\PackagesC:\Windows\System32\control.exehttps://myaccount.google.com/securityResult:
Open backup locations, Control Panel settings, and Google account security in one command.
This item prepares your documentation workspace for coding projects.
Doc SessionO2 secondsC:\Users\YourName\AppData\Local\Programs\Microsoft VS Code\Code.exehttps://github.comC:\Users\YourName\Documents\ProjectDocsResult:
Launch VS Code, GitHub, and your documentation folder for collaborative coding work.
You can make a shortcut behave differently depending on the application you are in.
To create an app-specific shortcut:
NVDA+Shift+E twice quickly to copy its name to the clipboard.If a global shortcut and an app-specific shortcut use the same gesture, the app-specific one will always take priority when its app is active.
You can change how much feedback the add-on gives you from the main settings panel:
You can back up your entire configuration or move it to another computer using the Import settings and Export settings buttons. The configuration is stored in a config.json file.
Note: Importing a configuration will overwrite your existing settings.
Instant Access supports passing command-line arguments to applications, which allows advanced automation. This enables users to open specific files, trigger program features, run scripts, or execute system tasks directly from a shortcut.
The following examples demonstrate practical, specialized workflows that showcase different argument patterns:
Many Chromium browsers can open a site as a standalone app window without browser UI.
Name: Open WhatsApp Web App
Shortcut: W
Program
Path:
C:\Program Files\Google\Chrome\Application\chrome.exe
Arguments:
--app=https://web.whatsapp.com
Result:
The website opens like a native desktop application.
Windows Explorer can directly select a file when opened.
Name: Locate Project Config
Shortcut: L
Program
Path:
explorer.exe
Arguments:
/select,"C:\dev\project-x\config.json"
Result:
Explorer opens the folder and focuses on the file.
Run cleanup without opening the full interface.
Name: Quick Disk Cleanup
Shortcut: C
Program
Path:
cleanmgr.exe
Arguments:
/verylowdisk
Result:
Runs disk cleanup automatically.
Open a secure browsing session immediately.
Name: Private Browser
Shortcut: P
Program
C:\Program Files\Mozilla Firefox\firefox.exe
Arguments:
-private-window
Result:
Firefox starts directly in private browsing.
Purpose: Launch Visual Studio Code directly inside a project folder.
Name: Open Project in VS Code
Shortcut: V
Program
C:\Users\YourName\AppData\Local\Programs\Microsoft VS Code\Code.exe
Arguments:
C:\dev\myproject
Result:
VS Code launches with the specified project folder already loaded.
Purpose: Start a terminal already positioned in a project directory.
Name: Dev Terminal
Shortcut: T
Program
C:\Windows\System32\cmd.exe
Arguments:
/k cd C:\dev\project-x
Result:
Command Prompt opens and automatically changes to the project directory.
Purpose: Execute a PowerShell script that performs automated tasks.
Name: Run Backup Script
Shortcut: B
Program
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
Arguments:
-ExecutionPolicy Bypass -File "C:\Scripts\backup.ps1"
Result:
Runs a predefined backup automation script.
Windows settings pages can be opened using ms-settings arguments.
Name: Open Bluetooth Settings
Shortcut: S
Program
explorer.exe
Arguments:
ms-settings:bluetooth
Other examples:
ms-settings:display
ms-settings:network
ms-settings:sound
ms-settings:windowsupdate
Result:
Instantly opens the selected settings page.
Purpose: Start Firefox with several tabs simultaneously for a research workflow.
Name: Research Session
Shortcut: R
Program
C:\Program Files\Mozilla Firefox\firefox.exe
Arguments:
https://scholar.google.com https://arxiv.org https://github.com
Result:
Opens Firefox with three research resources in separate tabs.
Purpose: Launch Registry Editor directly to a specific location.
Name: Open NVDA Registry Settings
Shortcut: O
Program
C:\Windows\System32\regedit.exe
Arguments:
/m
Result:
Opens Registry Editor in read-only mode for safe browsing.
Purpose: Open Event Viewer directly for system diagnostics.
Name: View System Events
Shortcut: E
Program
C:\Windows\System32\eventvwr.exe
Arguments:
/c system
Result:
Opens Event Viewer focused on system events for troubleshooting.
Purpose: Execute a batch script that requires elevated privileges.
Name: Admin Batch Script
Shortcut: H
Program
C:\Windows\System32\cmd.exe
Arguments:
/c call C:\Scripts\system_maintenance.bat
Result:
Executes a batch script for system maintenance tasks.
Purpose: Open Git Bash terminal in a specific project folder.
Name: Git Project Terminal
Shortcut: G
Program
C:\Program Files\Git\git-bash.exe
Arguments:
--cd=C:\dev\my-repo
Result:
Opens Git Bash in your project directory, ready for version control commands.
Purpose: Launch Performance Monitor for system monitoring.
Name: Performance Monitor
Shortcut: M
Program
C:\Windows\System32\perfmon.exe
Arguments:
/res
Result:
Opens Performance Monitor in Reliability Monitor view for resource tracking.
Purpose: Open VLC with a media directory.
Name: Music Library
Shortcut: U
Program
C:\Program Files\VideoLAN\VLC\vlc.exe
Arguments:
C:\Users\YourName\Music
Result:
Launches VLC with your music library ready to play.
Purpose: Quick access to network configuration.
Name: Network Config
Shortcut: I
Program
explorer.exe
Arguments:
ms-settings:network-wifi
Result:
Opens Windows network settings for Wi-Fi configuration.
These workflows illustrate different automation patterns:
Pattern
Purpose
Application mode
Turn websites into standalone apps
File selection
Navigate to and select specific files
Silent utilities
Run maintenance tools without UI
Browser modes
Open browsers with specific features
Development setup
Launch IDE with project folder
Script execution
Automate system tasks with PowerShell
Settings pages
Open specific Windows configuration
File associations
Open files directly in target applications
Command-line arguments can come from many sources:
--help or /? command outputms-settings:, shell:, etc.)Experiment with these arguments to create custom workflows tailored to your specific needs!
Copyright (C) 2026 Kamal Yaser.
This add-on is licensed under the GNU General Public License (GPL) Version 2 or any later version.