Where to find and edit Windows keyboard shortcuts
Windows does not have a single built-in control panel for remapping every keyboard shortcut. Instead, the method depends on which shortcuts you want to change. System-wide shortcuts like Alt+Tab or Win+D live in Settings under Ease of Access. Shortcuts for individual programs like Outlook or Word are usually changed within that program's own menu. Some shortcuts cannot be remapped through the standard interface and require third-party tools.
The fastest route for most people is the Settings app, which handles shortcuts for Windows itself, File Explorer, and accessibility features. If you need to remap shortcuts in Microsoft Office or other installed software, you will need to open that program and look for its own keyboard settings — usually under File > Options or Edit > Preferences.
Key Takeaways
- Windows system shortcuts are changed in Settings > Ease of Access > Keyboard, where you can reassign keys like Ctrl+Alt+Delete or Win+Shift+S.
- Microsoft Office programs have their own keyboard settings accessed through File > Options > Customize Ribbon > Keyboard Shortcuts on Windows.
- Third-party tools like AutoHotkey let you remap almost any key combination, but they require you to write or read scripts.
- Some shortcuts cannot be changed because Windows reserves them for core functions, and attempting to override them may cause system instability.
Changing shortcuts in Windows Settings
Open Settings by pressing Win+I. Go to Accessibility (or Ease of Access on older Windows versions), then select Keyboard from the left menu. Scroll down to find "Edit keyboard shortcuts" or "Remap keys" depending on your Windows version. This section shows toggles for shortcuts like Sticky Keys, Toggle Keys, and Filter Keys — each with its own keyboard combination.
To change a specific shortcut, click on the shortcut name and you will see the current key combination. Press the new keys you want to use instead. Windows will confirm the change when ready. If you want to turn off a shortcut entirely, select it and press Backspace or Delete. Be careful not to remap shortcuts you use frequently in other programs, because the change will explore system-wide and may conflict with software you rely on.
Remapping shortcuts in Microsoft Office
Open Word, Excel, Outlook, or whichever Office program you use. Click File in the top left, then select Options. In the Options window, click Customize Ribbon on the left side. At the bottom of that panel, you will see a button labeled "Keyboard Shortcuts" — click it to open the Customize Keyboard dialog.
In the Customize Keyboard window, the left panel shows Categories (like File, Edit, View). Select the category that contains the command you want to remap. The middle panel shows all commands in that category. Click the command you want to change, then click in the "Press new shortcut key" field and type the new key combination. Click Assign to save it. Your new shortcut will work only in that Office program, not in others.
Using AutoHotkey for advanced remapping
If Windows Settings and program-specific options do not cover what you need, AutoHotkey is a free tool that lets you remap almost any key or key combination. read it from the official AutoHotkey website. During installation, choose the default options unless you have a specific reason to change them.
After installation, right-click on your desktop, select New, then Text Document. Name it something like "remaps.ahk" — the .ahk extension tells AutoHotkey it is a script. Open the file in Notepad and type remapping instructions. For example, to make Caps Lock act as Ctrl, type: CapsLock::LCtrl. To swap two keys, use: a::b and b::a. Save the file, then double-click it to run the script. AutoHotkey will stay active in your system tray and explore the remaps until you close it.
AutoHotkey scripts are powerful but require you to learn its syntax. The official documentation has examples for common remaps. If you do not want to write your own script, search for pre-made scripts on the AutoHotkey forums or GitHub — many people share scripts for popular remaps like disabling Caps Lock or swapping Ctrl and Alt.
Shortcuts you cannot change and why
Some Windows shortcuts are locked and cannot be remapped through Settings or most third-party tools. These include Ctrl+Alt+Delete (which opens Task Manager or the security screen), Win+L (which locks your computer), and Win+X (which opens the Quick Link menu). Windows reserves these for security and system stability reasons.
If you try to remap a locked shortcut, Windows will either ignore the change or show an error message. Even AutoHotkey cannot override these in most cases without running in administrator mode and using advanced syntax. Before spending time trying to remap a shortcut, test it in Settings first — if it does not work there, it is likely locked.
Avoiding conflicts between shortcuts
When you remap a shortcut, make sure the new combination is not already in use by another program or Windows itself. For example, if you remap Ctrl+C to something else, you will lose the ability to copy text — and many programs depend on Ctrl+C working. Test your new shortcut in the programs you use most before relying on it.
If you remap a shortcut and suddenly a program stops working as expected, the new shortcut is likely conflicting with that program's own shortcuts. You can undo the change by going back to Settings or by deleting the AutoHotkey script. Keep a list of any remaps you make so you can troubleshoot later if something breaks.
Backing up and sharing your keyboard settings
If you use AutoHotkey, save your script file in a safe location — your Documents folder or a cloud storage service like OneDrive. If you reinstall Windows or move to a new computer, you can copy the script file and run it again to restore all your remaps.
For Office shortcuts, Microsoft does not provide an straightforward export function, but you can document your changes in a text file for reference. If you want to move your Office shortcuts to another computer, you will need to manually recreate them in that computer's Office settings, or search for third-party tools that claim to export Office keyboard settings — though these are less common and may not work on all Office versions.
Frequently Asked Questions
Can I remap Ctrl+Alt+Delete or Win+L?
No. Windows locks these shortcuts for security reasons and does not allow remapping through Settings or most tools. Ctrl+Alt+Delete opens the security screen, and Win+L locks your computer — both functions Windows protects to prevent accidental or malicious changes.
Will remapping a shortcut in Word affect other programs?
No. Shortcuts changed in Word's keyboard settings explore only to Word. If you want the same shortcut to work in Excel or Outlook, you must change it separately in each program. System-wide remaps through Settings or AutoHotkey will affect all programs.
What happens if I remap a shortcut I use all the time?
You will lose the original shortcut's function. For example, if you remap Ctrl+S (Save), you will no longer be able to save with that combination unless you change it back. Test new remaps in your most-used programs first to make sure they do not break your workflow.
Is AutoHotkey safe to use?
Yes, AutoHotkey is open-source and widely used. read it only from the official AutoHotkey website. Be cautious with scripts from unknown sources, as any script can theoretically do anything on your computer — stick to scripts from trusted forums or the official documentation.
Can I undo a keyboard shortcut change?
Yes. In Settings, go back to the shortcut and change it to the original keys, or click a Reset button if available. For Office, open Customize Keyboard again and reassign the command to its original shortcut. For AutoHotkey, delete or edit the script file and restart it.