Skip to main content

Microsoft Windows 10 important shortcut keys.

 



Here’s a comprehensive list of important Microsoft Windows 10 shortcut keys, organized by category:


General Shortcuts

Shortcut Function
Ctrl + C Copy
Ctrl + X Cut
Ctrl + V Paste
Ctrl + Z Undo
Ctrl + Y Redo
Ctrl + A Select All
Alt + Tab Switch between open apps
Alt + F4 Close active window
Alt + Enter Show properties of selected item
F2 Rename selected item
F5 Refresh the window
Ctrl + Shift + Esc Open Task Manager
Win + D Show/Hide desktop
Win + E Open File Explorer
Win + L Lock your PC
Win + M Minimize all windows
Win + Shift + M Restore minimized windows
Win + R Open Run dialog box
Win + S Open Search
Win + I Open Settings
Win + A Open Action Center
Win + P Project screen (multiple displays)
Win + Tab Open Task View
Ctrl + Shift + N Create new folder in File Explorer
Ctrl + N New window (in apps like File Explorer)

Windows Snap & Multitasking

Shortcut Function
Win + Left Arrow Snap window to left
Win + Right Arrow Snap window to right
Win + Up Arrow Maximize window
Win + Down Arrow Minimize window
Win + Ctrl + D Create new virtual desktop
Win + Ctrl + Left/Right Switch between virtual desktops
Win + Ctrl + F4 Close current virtual desktop

Command Prompt Shortcuts

Shortcut Function
Ctrl + C Abort command
Ctrl + V Paste (in CMD)
Up/Down Arrow Cycle through command history

Accessibility Shortcuts

Shortcut Function
Win + U Open Ease of Access Center
Win + + / - Zoom in/out with Magnifier
Ctrl + Win + Enter Turn Narrator on/off

Browser (Edge/Chrome) Shortcuts

Shortcut Function
Ctrl + T Open new tab
Ctrl + W Close current tab
Ctrl + Shift + T Reopen closed tab
Ctrl + Tab Switch to next tab
Ctrl + Shift + Tab Switch to previous tab
Ctrl + L / Alt + D Focus address bar
Ctrl + D Bookmark current page


Comments

Popular posts from this blog

Microsoft Excel top functions.

  Microsoft Excel offers numerous functions to simplify data analysis and calculation. Here are some of the most commonly used and powerful functions: Basic Functions SUM : Adds values. =SUM(A1:A10) AVERAGE : Calculates the mean of numbers. =AVERAGE(A1:A10) IF : Performs logical tests and returns values based on conditions. =IF(A1>10, "Yes", "No") COUNT : Counts numeric values in a range. =COUNT(A1:A10) LEN : Returns the length of a text string. =LEN(A1) Lookup and Reference Functions VLOOKUP : Looks for a value in the first column and returns a value in the same row from another column. =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup]) HLOOKUP : Similar to Here are practical examples of common Excel functions and how they can be applied in real-life scenarios: 1. SUM Scenario: Calculate the total sales for a week. Example: A B Day Sales Monday 200 Tuesday 150 Wednesday 300 Thursday 250 Friday 100 ...

Creating Wages Sheet using Microsoft Excel

  Creating wages sheet using Microsoft Excel The DAYS360 function in Microsoft Excel calculates the number of days between two dates based on a 360-day year (commonly used in financial calculations). A 360-day year assumes each month has 30 days, simplifying interest and payment schedules. Syntax: DAYS360(start_date, end_date, [method]) Parameters: start_date : The starting date (required). Enter it as a valid date or reference a cell containing a date. end_date : The ending date (required). Enter it similarly to the start_date. method : Logical value (optional). FALSE (default): Uses the U.S. (NASD) method for date calculations. TRUE : Uses the European method. Key Differences Between Methods: U.S. (NASD) : Adjusts the start and end dates depending on whether they fall on the 31st of a month. European : Always treats the start and end dates as the 30th of the month if they are the 31st. Example Usage: Example 1: Calculate days using the U.S. method =DAYS360("01/01/2024", ...

How to use Microsoft Excel PMT function?

  To use the PMT function in Microsoft Excel, follow these steps: Steps to Use the PMT Function: Open Excel : Open your Excel workbook where you want to calculate the payment. Select a Cell : Click on the cell where you want the result (monthly payment). Enter the PMT Function : Use the formula syntax: =PMT(rate, nper, pv, [fv], [type]) Input Arguments : rate : Interest rate per period (e.g., for a monthly rate, divide the annual rate by 12). nper : Total number of payment periods. pv : Present value (loan amount or investment). fv (optional) : Future value, usually 0 for loans. type (optional) : Payment timing: 0 (default): End of the period. 1: Beginning of the period. Press Enter : Excel will calculate and display the periodic payment. Example 1: Monthly Loan Payment Problem: You take a loan of $15,000 with an annual interest rate of 5%, to be repaid over 3 years (36 months). What is the monthly payment? Steps: Select a cell and enter: =PMT(5%/12, 3*12, -...