Windows Keyboard Shortcut Notes
Windows Keyboard Shortcut Notes
Most shortcuts in the Windows GUI are based around the Ctrl, Alt, or Windows ( ) key. Of course
there is no recognition of a key within Linux or Mac, however there are similar shortcuts within
those OSs.
Mac key Windows key
Control Ctrl
Option Alt
Command Windows
See https://support.microsoft.com/en-us/help/970299/keyboard-mappings-using-a-pc-keyboard-on-a-
macintosh and https://www.howtogeek.com/188530/a-windows-users-guide-to-mac-os-x-keyboard-
shortcuts/
All of these shortcuts will work within Windows OS utilities and most within applications running under
Windows. This cross-app functionality makes them even more useful to know!
There are 30 essential keyboard shortcuts. The most used ones are:
Ctrl + Z – Undo. You can undo as often as the application you're using is set to allow. Many
applications allow you to set the number of undo levels.
Ctrl + X – Cut ( X looks like scissors )
Ctrl + C – Copy ( Copy starts with C )
Ctrl + V – Paste ( V looks like a glue tip )
+ V – clipboard history (may need to turn on in Windows Settings)
Note these keys are in sequence. Move your left hand’s fingers down from the home row (ASDF) and
your fingers will be on Z, X, C and V. Press the Ctrl key with your right hand.
2020-01-09 Page 1 of 3
CP4P Computer Principles for Programmers – Keyboard Shortcuts v. 1.4
Windows OS-related:
2020-01-09 Page 2 of 3
CP4P Computer Principles for Programmers – Keyboard Shortcuts v. 1.4
https://blogs.technet.microsoft.com/sebastianklenk/2015/05/28/windows-10-keyboard-shortcuts-at-
a-glance/
Windows Key + TAB to see all running apps,
Alt + TAB to switch between running apps.
Alt + F4: Close current application
Ctrl + Esc: Open Start menu
Ctrl + Shift + Esc: Open Task Manager
Alt + Underlined Menu Item Letter: Open that menu. Use arrow keys to navigate menus
Windows usage:
You can navigate through the Windows operating system with the following keys:
Arrow keys will navigate through the current window, menu, etc.
Tab will shift focus to the next item. Within a program, the set of items will change – there may be any
number of items to cycle through. Shift-Tab will shift focus to the previous item.
What is focus?
Focus is the currently active item. No matter what you're doing with your system at any time, you can
only ever be doing one thing at a time. When we write code that executes with a GUI, we will
commonly set up a tab index order; this defines which items receive focus in what order, when tab is
pressed.
Terminology:
GUI: Acronym for Graphical User Interface. Sometimes pronounced "gooey". A shorthand that refers
the graphical approach to an interface, usually including elements such as menus, icons, mouse/touch
interaction, and other visual connections. The modern GUI was refined and defined by researchers at
Xerox PARC and appropriated by Apple and then by Microsoft.
Device: Generally refers to any hardware attached to a computer. Could include monitor, mouse,
keyboard, external hard drive, network card, printer, and so forth.
Path: Location of "where you are" in terms of current directory on the hard drive. The user is always in
one and only one place.
Execution: Running a complied program, uses an executable file. If you run a program, technically you
are executing it.
2020-01-09 Page 3 of 3