Skip to main content

Microsoft Windows Useful Keyboard shortcuts






First and foremost, help is what people look for in case of any problem encountered. Press F1 for quick help in almost any program.

Quick Help

.....................
Pressing F1 in almost any program will bring up the Help Menu.
.....................

Start Menu shortcut

.....................
CTRL + ESC will open the Start Menu. It is the same as using Windows key (the key usually placed alongside Alt and Ctrl and having microsoft windows logo on it). Once the Start Menu is opened, you can use your Arrow Keys on the keyboard to navigate through the list
of installed programs. You can also use program name specific characters to quickly select programs in start menu. Press ENTER to execute the program.
.....................

Switching Between Tasks

.....................
ALT + TAB will bring up a Window with a list of icons representing
programs which are currently running on your computer. While holding
the ALT key, press and depress the TAB button to cycle between each
icon task.
.....................

Cycle To The Next Task

.....................
ALT + ESC will switch to next task running on your computer. Hold
down the ALT key, press and depress the ESC key to cycle to the next
task.

Close or Quit a program

.............
ALT+F4 will usually work on almost all the programs to close them.

Bypassing Recycle bin

............
Use SHIFT+DELETE to Delete item permanently. It’ll not be put in to recycle bin. Be careful with overuse of Shift + Del. You might end up deleting something that you may need later on.

.....................

Terminating Crashing or Non-responding Programs
.....................
CTRL + ALT + DELETE will bring up Task Manager and allow you to End a
Process (terminate a program) if it has crashed or has stopped
responding. Select the process which has stopped responding, and then
press "END PROCESS" to terminate it.

Cycling Buttons On A Window

.....................
Pressing TAB while a window is open on your Desktop will cycle the
cursor to the next button position in the window. The TAB key also
works when cycling between text fields when filling out forms on the
Internet.
.....................

Copy Text Quick to Clipboard

.....................
After highlighting text with your mouse, press CTRL + INSERT to copy
it to your clipboard. You may use CTRL + C also.
.....................

Paste Text Quickly from Clipboard

.....................
Pressing SHIFT + INSERT will paste any text that is in your clipboard.
Your cursor must also be placed in an area that will accept keyboard
input for this to work. You may use CTRL + V as its substitute.
.....................

Highlight Text To The Top Of The Page

.....................
Click on a line of text anywhere in a document, and press CTRL + SHIFT
+ HOME to select all text above this area to the top of the page.
.....................

Highlight Text To The Bottom Of The Page

.....................
Click on a line of text anywhere in a document, and press CTRL + SHIFT
+ END to select all text below this area to the bottom of the page.

Fast Locking computer

-----------
Use Windows Logo+L to Lock the computer. For the users who have user switching enabled, it’ll instantly take them to the windows logon screen keeping the existing user logged in.

Open Task manager

...................
CTRL+SHIFT+ESC Opens Windows Task Manager. It is the same as doing CTRL + ALT + Delete.

Renaming Files

.................
use F2 key to rename a file. This key is also used in many programs to modify entries.

Finding Files or Text

.................
F3 is mainly used to find files either on Explorer or inside programs. If used in a program, it will help in finding text, a word, character etc.

View the properties of a Selected object

....................
ALT+ENTER: to Open the properties for the selected object.

Open Run dialog box quickly

...................
Use Windows key + R to open it. You’ll be using it quite frequently if you follow our guides.
...................

Open My Computer quickly

..................
Use Windows Key + E to open My computer in explorer with Folders view on.
.................

Show Desktop Quickly

................
Windows key (Winkey) + D to show desktop. It’ll minimize all the active windows instantly. Use again to switch back to the previous view.

Add your own most used microsoft keyboard shortcuts. Let's be a little more efficient from now on!

Comments

Popular posts from this blog

Setup a Multi-Protocol VPN Server Using SoftEther on Centos7

  Introduction This article explains how to install and configure a multi-protocol VPN server using the SoftEther package. We enable and configure OpenVPN and L2TP over IPSec and SSTP VPN Servers on Linux. What is SoftEther SoftEther VPN is one of the world’s most powerful and easy-to-use multi-protocol VPN software, made by the good folks at the University of Tsukuba, Japan. It runs on Windows, Linux, Mac, FreeBSD and Solaris and is freeware and open-source. You can use SoftEther for any personal or commercial use free of charge. Step 1: Create a Virtual Server First, you need to create a DigitalOcean Droplet. As mentioned in SoftEther’s website, SoftEther will work on almost every Linux distro with kernel v2.4 or above,; however it’s recommended to choose one of these distributions: CentOS, Fedora, or Red Hat Enterprise Linux. Personally I have tried it on Ubuntu, CentOS and Fedora, both 32 and 64 bit editions, and it has worked perfectly. Step 2: Update your Server Software Usin...

Setting Up MariaDB MaxScale Binlog Proxy for backup/failover

  Setting Up MariaDB MaxScale Binlog Proxy MariaDB MaxScale Binlog Server acts as an intermediate master replication proxy. By storing binary logs and serving them to replicas, it enables scalable replication architectures, reduces primary database load, and accelerates disaster recovery. Step 1: Install MariaDB MaxScale Install MaxScale using the package manager appropriate for your Linux distribution, then verify the installation. On Ubuntu/Debian: sudo apt-get update sudo apt-get install maxscale On RHEL/CentOS: sudo yum install maxscale Verify the installation: maxscale --version Step 2: Configure MaxScale as a Binlog Proxy Open MaxScale's core configuration file to establish the routing properties and specify your database backend configuration. sudo nano /etc/maxscale.cnf Add the following configurations for the moni...

Deploying a laravel app using nginx alias

  server { listen 80; server_name subdomian.example.com; root /var/www/mainapp/; add_header X-Frame-Options "SAMEORIGIN"; add_header X-XSS-Protection "1; mode=block"; add_header X-Content-Type-Options "nosniff"; index index.html index.htm index.php; charset utf-8; error_log /var/log/nginx/error.log warn; location / { try_files $uri $uri/ /index.php?$query_string; } location = /favicon.ico { access_log off; log_not_found off; } location = /robots.txt { access_log off; log_not_found off; } error_page 404 /index.php; location ~ \.php$ { fastcgi_pass unix:/var/run/php/php8.1-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; include fastcgi_params; } location /laravelapp { alias /var/www/mainapp/laravelapp/public; index index.php index.html in...