Skip to main content

Keyboard Shortcut for Part or Full Screenshot

Windows 10 has a built-in screenshot tool. You can take a screenshot of the full screen or just a part of it. The screenshots will be copied to the clipboard so you can paste into any program that supports images like Paint, Photoshop, messengers like MS Teams or email messages. 

Keyboard Shortcut

Press Winkey + Shift + S. The screen will have a light or dark overlay and the mouse cursor will change to a plus (+) symbol, which means capture mode is on.

A bar will appear at the top of the main screen. From there, you can choose one of the snipping modes:

  • Rectangular - take a rectangular screenshot by dragging the desired fragment with the cursor.
  • Freeform - freely create a screenshot of a non-standard shape by "painting" with the pressed cursor.
  • Window - captures part of the screen, e.g. a window on the screen, such as browser window, file explorer window, etc.
  • Fullcreen - captures the entire screen (also from multiple monitors, if connected)


If you chose the option you wanted and took the screenshot correctly, you will be shown a notification about the saved screenshot to the clipboard. 



Clicking on the notification message opens the Snip & Sketch tool, where you can annotate, edit the image, share or copy the edited again to the clipboard.




Where is the screenshot file saved?

When you use the Winkey + Shift + C shortcut, Windows automatically saves your screenshots to a PNG file in the following folder:

C:\Users\%username%\AppData\Local\Packages\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\TempState\ScreenClip

The system doesn't create these files alphabetically, so it's best to sort the files by date so that the newest is on top.



Comments

Popular posts from this blog

PowerShell Permanently Clear History

PowerShell has a command to clear the command history like Clear-History. However, it is independent of the host and must be deleted separately. This information is especially important when you need to use a command with your password (in command).  How to permanently delete PowerShell history? The entire history of the commands you use in PowerShell is saved to one file. To fully delete the history, all you need to do is ... delete the file. Usually the file is located in AppData, but you can check the exact path with the command which will display the full path. PS C:\> (Get-PSReadlineOption).HistorySavePath ### result C:\Users\geekitsupp\AppData\Roaming\Microsoft\Windows\PowerShell\PSReadLine\ConsoleHost_history.txt After deleting this file, all history of commands executed in PowerShell will be deleted. Clear-History or [Microsoft.PowerShell.PSConsoleReadLine]::ClearHistory() command doesn't permanently delete history. They can only delete ...

How to use Test-NetConnection in PowerShell

In the latest versions of Windows, the client and telnet service are not installed by default. They are available as installable functions. Unfortunately, turning on telnet often requires a restart computer. The connection test can be performed with the ping command, but does not perform any tracing or port testing. In most network problems we need to use ping command with tracert. Also telnet for check for open ports. PowerShell Test-NetConnection The Test-NetConnection command is the successor to Test-Connection but provides more information. Let's do a simple test to Google: PS C:\> Test-NetConnection 8.8.8.8 ComputerName : 8.8.8.8 RemoteAddress : 8.8.8.8 InterfaceAlias : Ethernet 2 SourceAddress : 192.168.1.10 PingSucceeded : True PingReplyDetails (RTT) : 9 ms The command returns a lot of information, usually this is enough to find a network problem (if any). It will display the interface, source I...