What is the keyboard shortcut for Snipping Tool? A Windows guide

Discover the core keyboard shortcut to trigger Windows Snipping Tool screen capture, plus practical tips to launch, customize, and automate snips for faster workflow.

Shortcuts Lib
Shortcuts Lib Team
·7 min read
Snip with shortcuts - Shortcuts Lib
Quick AnswerFact

On Windows, the primary keyboard shortcut to trigger the Snipping Tool’s screen clipping is Win+Shift+S. This saves your selected area to the clipboard for immediate pasting into apps. In this article, we cover how to use the shortcut effectively, how to launch Snipping Tool from the keyboard, and options for automating snips in daily workflows.

Understanding Snipping Tool Shortcuts

The Snipping Tool suite on Windows provides fast screen captures via keyboard shortcuts. The most widely used combination is Win+Shift+S, which activates Snip & Sketch for precise area capture and places the result on your clipboard for immediate pasting. This section explains the history of the shortcut, how it fits into today’s Windows workflows, and where to find it in Settings. According to Shortcuts Lib, tightening the capture workflow around a single keyboard shortcut reduces context switching and speeds up day-to-day tasks. For power users, knowing the exact keystroke is the difference between interrupting a task and continuing the flow.

PowerShell
# Quick test: open the screen clip tool (Windows) and wait for user snip Start-Process "ms-screenclip:"

The following notes illustrate why this matters: the Win+Shift+S shortcut is available on Windows 10 and 11 with the latest Snip & Sketch integration, and it works across the desktop and many apps. If you prefer the legacy Snipping Tool UI, you can still launch it via Run dialog, or script a launcher using PowerShell or AutoHotkey. Another option is to pin the Snipping Tool to the taskbar for one-click access.

Quick Start: Using Win+Shift+S

Using Win+Shift+S activates the built-in screen clipping tool. After you select a region, the image is copied to the clipboard, ready to paste into documents, emails, or image editors. Windows 10 and Windows 11 share this workflow, and the Snip & Sketch integration continues to streamline the experience. For beginners, practice three quick steps: invoke, select, and paste. As you gain familiarity, you can chain this with a paste step in your daily apps to keep your momentum. Below is a lightweight test script that demonstrates how you might verify the clipboard content after capturing a snip.

PowerShell
# After pressing Win+Shift+S, verify and save the snip if the clipboard contains an image Add-Type -AssemblyName System.Windows.Forms $image = [System.Windows.Forms.Clipboard]::GetImage() if ($image -ne $null) { $path = "$env:USERPROFILE\Pictures\Snips\snip_$(Get-Date -Format 'yyyyMMdd_HHmmss').png" $image.Save($path, [System.Drawing.Imaging.ImageFormat]::Png) Write-Output "Saved snip to: $path" } else { Write-Warning "Clipboard does not contain an image yet." }

If you want to test the workflow without triggering a real snip, you can simulate the clipboard content by pasting a known image into the clipboard first, then running the script. This helps you validate the save path and file naming conventions before you start capturing real content.

Launching Snipping Tool from the Keyboard

Windows users often want a keyboard route to open the Snipping Tool interface directly. While Win+Shift+S is ideal for quick region captures, there are ways to spawn Snipping Tool or Snip & Sketch from the keyboard using automation tools. This section shows how to set up a simple remapping so that a single keystroke both opens the tool and places it in a ready state for capturing. The goal is to minimize context switching and keep your hands on the keyboard. The technique is compatible with Windows 10/11 and can be extended with scripting for repeated tasks.

AHK
; AutoHotkey example: remap Ctrl+Shift+S to Win+Shift+S (open snipping tool) ^+s::Send, #+s

If you prefer a native approach without AutoHotkey, you can wire a shortcut to launch Snipping Tool via the Run dialog or a dedicated launcher, but you’ll still need to use Win+Shift+S for the actual snip. The key idea is to create a consistent, comfortable workflow that minimizes the friction between thinking about the task and performing it.

Alternatives across Windows versions

Not every Windows setup uses Snip & Sketch by default, and some environments still rely on the legacy Snipping Tool. This section compares the most common options and shows concrete commands to access each tool from the keyboard or a quick launcher. The legacy tool can be launched with the Run dialog: Win+R, then type SnippingTool.exe and press Enter. In newer setups, ms-screenclip: opens the Snip & Sketch screen clip. Understanding both options helps you tailor your workflow to your OS version and updates. The following examples illustrate direct command usage from a batch file and a PowerShell prompt.

BAT
@echo off rem Launch legacy Snipping Tool (if installed) start "" "C:\Windows\System32\SnippingTool.exe"
PowerShell
# Open Snip & Sketch screen clip via URI Start-Process "ms-screenclip:"

For teams that update devices en masse, consider policy-based deployment of a single launcher that routes users to Snip & Sketch or Snipping Tool depending on OS version. This keeps the experience consistent while accommodating edge cases, such as devices that lack the newer Snip & Sketch integration.

Automating repetitive snips with a script

If you perform the same capture actions repeatedly, automation can save time and reduce errors. This block demonstrates a practical approach using PowerShell and optional AutoHotkey integration. The PowerShell example assumes you press Win+Shift+S to initiate a snip, and then the script checks the clipboard for an image and saves it with a timestamped filename. You can expand this by adding a loop that cycles through multiple areas or prompts for a save location. For developers, parameterizing the output path makes the script portable across machines.

PowerShell
# Save clipboard image to a timestamped file automatically after snip Add-Type -AssemblyName System.Windows.Forms $image = [System.Windows.Forms.Clipboard]::GetImage() if ($image -ne $null) { $dir = "$env:USERPROFILE\Pictures\Snips" New-Item -Path $dir -ItemType Directory -Force $file = "$dir\snip_$(Get-Date -Format 'yyyyMMdd_HHmmss').png" $image.Save($file, [System.Drawing.Imaging.ImageFormat]::Png) Write-Output "Saved: $file" } else { Write-Warning "Clipboard does not contain an image. Copy a snip first." }

To automate repeatedly, you can wrap the above snippet into a loop and bind it to a hotkey with AutoHotkey so each press captures, saves, and prepares for the next snip. This approach scales well for UI testing, documentation workflows, or rapid troubleshooting tasks where you need a consistent visual trail.

Saving, sharing, and organizing snips

Organization matters when you capture many snips across projects. This block focuses on saving, naming, and sharing strategies that keep your workflow clean and searchable. A robust approach uses timestamped filenames and a dedicated directory structure. You can wire a script to save each snip to a path like Pictures/Snips with a date-time stamp, and create a short summary log for each file. For collaboration, ensure your workflow saves into a shared folder or a cloud-synced location so teammates can access visuals in real time. The following PowerShell example saves a clipboard image to a timestamped PNG file and returns the path for quick sharing.

PowerShell
# Save clipboard image to a file and print the path for sharing Add-Type -AssemblyName System.Windows.Forms $image = [System.Windows.Forms.Clipboard]::GetImage() $dir = "$env:USERPROFILE\Pictures\Snips" New-Item -Path $dir -ItemType Directory -Force $file = "$dir\snip_$(Get-Date -Format 'yyyyMMdd_HHmmss').png" $image.Save($file, [System.Drawing.Imaging.ImageFormat]::Png) Write-Output "Saved: $file"

If you want to share assets outside your machine, consider exporting a manifest or a small index file that lists all snips with their relative paths, dates, and descriptions. This metadata makes it easy to search for visuals later and reduces the time spent rummaging through folders.

Troubleshooting common issues

Even seasoned users hit snags when starting with screen clipping. This block helps you diagnose typical problems and provides quick fixes. Common issues include the Snip & Sketch tool failing to launch, the clipboard not containing an image after a snip, or the snip appearing but not saving correctly. The checks below show how to verify tool registration, confirm a snip was created, and ensure you have sufficient permissions. When things go wrong, start by confirming you have the latest Windows updates and the latest version of Snip & Sketch. If the problem persists, try a clean user profile to rule out configuration conflicts.

PowerShell
# Check if ms-screenclip: is registered and accessible try { Start-Process "ms-screenclip:" -ErrorAction Stop Write-Output "ms-screenclip: is available." } catch { Write-Warning "ms-screenclip: is not registered or blocked." }
PowerShell
# Validate clipboard contents after a snip Add-Type -AssemblyName System.Windows.Forms $image = [System.Windows.Forms.Clipboard]::GetImage() if ($image -eq $null) { Write-Warning "Clipboard empty. Ensure you captured a snip before accessing the image." } else { Write-Output "Clipboard contains an image." }

For persistence issues, check policy settings or antivirus software that might block clipboard access or script execution. If necessary, test with a minimal script and gradually reintroduce components to identify the culprit.

Cross-platform notes and

Best practices and a quick recap

To maximize efficiency with Snipping Tool shortcuts, adopt a consistent sequence: prepare your target, trigger the snip with Win+Shift+S, paste or save immediately, and, if needed, launch a dedicated tool for long-form editing. Use AutoHotkey to customize a single, comfortable hotkey that triggers your preferred snip flow. Regularly check for tool updates, as Windows occasionally consolidates features into Snipping Tool or Snip & Sketch in new builds. Finally, document your preferred shortcuts and scripts so teammates can reproduce your workflow.

PowerShell
# Simple check to confirm the Snipping Tool components exist in the system Get-Command ms-screenclip: -ErrorAction SilentlyContinue | Out-Null; if ($?) { Write-Output 'ms-screenclip: available' } else { Write-Warning 'ms-screenclip: unavailable' }

Steps

Estimated time: 15-45 minutes

  1. 1

    Identify capture goal

    Decide whether you need a rectangular, free-form, or window snip and what to do with it after.

    Tip: Starting with a clear goal reduces post-capture edits.
  2. 2

    Trigger the snipping tool

    Use Win+Shift+S to bring up the clipping tool and select the area.

    Tip: Practice keeping the cursor steady for precise selection.
  3. 3

    Paste or save snip

    After snipping, paste directly into your document, or use Save/Copy options if available.

    Tip: Paste into apps that accept images, like docs or email.
  4. 4

    Automate repetitive tasks

    If you repeat the same snip process, configure AutoHotkey to map a dedicated hotkey to Win+Shift+S.

    Tip: Test in a safe environment before deploying.
  5. 5

    Evaluate alternates and updates

    Keep Snipping Tool up to date and consider macOS equivalents for cross-platform workflows.

    Tip: Regularly check for feature updates.
Pro Tip: Win+Shift+S is the fastest way to capture; remember to paste quickly to preserve clipboard content.
Warning: Clipboard contents are replaced by each new snip; save if you need a kept history.
Note: In Windows 11, Snip & Sketch integrates tightly with the Snipping Tool; ensure you have the latest updates.
Pro Tip: Use AutoHotkey to remap a comfortable shortcut to Win+Shift+S for easier recall.

Prerequisites

Required

Keyboard Shortcuts

ActionShortcut
Open screen clipping (Windows)Triggers Snip & Sketch for area captureWin++S
Paste snip into appPaste into documents, chats, or image editorsCtrl+V
Launch legacy Snipping ToolLegacy path for compatibilityWin+R; type snippingtool; Enter

Questions & Answers

What is the keyboard shortcut for Snipping Tool?

The primary Windows shortcut to trigger the screen clipping is Win+Shift+S, which uses Snip & Sketch. It copies the captured region to the clipboard for fast pasting. You can also launch Snipping Tool directly with the Run dialog to use legacy features.

Win+Shift+S starts the screen clip and copies it to your clipboard for quick pasting.

Can I customize the snip shortcut?

Windows doesn't provide a built-in option to remap Win+Shift+S. You can use AutoHotkey to create a custom hotkey that sends the same keystroke to Snip & Sketch or the Snipping Tool.

You can customize the snip shortcut with a tool like AutoHotkey.

How do I save or share snips?

Snips captured with Win+Shift+S stay in the clipboard. Paste into your document or image editor, then save as PNG/JPEG. For automatic saving, use a script to grab the clipboard image and write it to disk.

Paste the snip where you need it, then save the image file if you want a standalone copy.

Does Snipping Tool work on macOS?

Snipping Tool is a Windows utility. macOS has built-in screen capture via Cmd+Shift+4 or Cmd+Shift+3. You can mirror Windows workflows with cross-platform tools, but native shortcuts differ.

Mac users can use Cmd+Shift+4 for selective screen capture.

What’s the difference between Snipping Tool and Snip & Sketch?

Snip & Sketch is the modern replacement that integrates with Windows 10/11 and shares the Win+Shift+S shortcut. The legacy Snipping Tool offers older capture options but is gradually superseded by Snip & Sketch.

Snip & Sketch is the newer, integrated tool; Snipping Tool is older but still available.

Can I automate saving multiple snips at once?

Yes, using scripting (e.g., PowerShell or AutoHotkey) you can batch-capture and save multiple images, but you must handle file naming and storage paths in your script.

You can automate multiple snips with scripts, but plan file names.

Main Points

  • Remember Win+Shift+S starts a screen clip
  • Snips go to clipboard by default
  • Use Save or AutoHotkey for automation
  • Keep Snipping Tool updated for best results

Related Articles