Skip to main content

Windows Key Shortcuts

List of common keyboard shortcuts that can be used with the Windows key:

Windows Key Shortcuts
(Image by - Sharma Guides | Subham232330)



1. Windows Key + D: Show the Desktop

2. Windows Key + E: Open File Explorer

3. Windows Key + I: Open Settings

4. Windows Key + L: Lock the computer

5. Windows Key + R: Open the Run Dialog

6. Windows Key + S: Open the search bar

7. Windows Key + Tab: Open Task View

8. Windows Key + Ctrl + D: Create a new virtual desktop

9. Windows Key + Ctrl + Left or Right arrow: Switch between virtual desktops

10. Windows Key + M: Minimize all windows

11. Windows Key + Shift + M: Undo minimize all windows

12. Windows Key + Up Arrow: Maximize the current window

13. Windows Key + Down Arrow: Minimize the current window

14. Windows Key + Right Arrow: Snap the current window to the right

15. Windows Key + Left Arrow: Snap the current window to the left

16. Windows Key + P: Project to a second screen

17. Windows Key + Home: Minimize all but the active window

18. Windows Key + T: Cycle through open applications on the taskbar

19. Windows Key + B: Set focus to the notification area

20. Windows Key + Ctrl + F: Search for a computer on your network.



Comments

Popular posts from this blog

SQL Injection

SQL Injection The SQL Injection is a code penetration technique that might cause loss to our database. It is one of the most practiced web hacking techniques to place malicious code in SQL statements, via webpage input. SQL injection can be used to manipulate the application's web server by malicious users. SQL injection generally occurs when we ask a user to input their username/userID. Instead of a name or ID, the user gives us an SQL statement that we will unknowingly run on our database. For Example - we create a SELECT statement by adding a variable "demoUserID" to select a string. The variable will be fetched from user input (getRequestString). demoUserI = getrequestString("UserId"); demoSQL = "SELECT * FROM users WHERE UserId =" +demoUserId; Types of SQL injection attacks SQL injections can do more harm other than passing the login algorithms. Some of the SQL injection attacks include: Updating, deleting, and inserting the data: An attack can mo...

Authentication vs Authorization

Authentication vs Authorization - Authentication and authorization are the two words used in the security world. They might sound similar but are completely different from each other. Authentication is used to authenticate someone's identity, whereas authorization is a way to provide permission to someone to access a particular resource. These are the two basic security terms and hence need to be understood thoroughly. In this topic, we will discuss what authentication and authorization are and how they are differentiated from each other. What is Authentication? Authentication is the process of identifying someone's identity by assuring that the person is the same as what he is claiming for. It is used by both server and client. The server uses authentication when someone wants to access the information, and the server needs to know who is accessing the information. The client uses it when he wants to know that it is the same server that it claims to be. The authentication by t...